- I want a Jenkins job to run for 3 days at interval of 24 hrs. after initial trigger of Job. Say if i trigger the job now . It should run at (now + 24) then at (now + 48) and later (now + 72).
 - I could find a expression : '0 */24 * * */3' , This runs At 0 minutes past the hour, every 24 hours, every 3 days of the week . Need some help to modify as per initial requirement.
 
            Asked
            
        
        
            Active
            
        
            Viewed 139 times
        
    0
            
            
        
        deepak
        
- 317
 - 1
 - 4
 - 15
 
- 
                    That's not [how cron works](https://stackoverflow.com/q/12472645/598141) – Ian W Jan 11 '22 at 11:27
 - 
                    @IanW : Is their a way to achieve this requirement ? Any leads are welcome. – deepak Jan 11 '22 at 14:24
 - 
                    1[Can I schedule a build for onetime run in Jenkins ? Any solution without cron](https://stackoverflow.com/a/63405325/598141). Do it 3x. – Ian W Jan 11 '22 at 19:33