Re: Job Scheduling per 10 secs

2017-06-14 Thread Ashish Kaushik
This worked like charm. Thanks for sharing this. It saved my loads of time as I decided to write a wrapper script to handle of this. Pipeline plugin came to rescue. Thanks again Bill! On Thursday, June 8, 2017 at 3:53:16 PM UTC+5:30, Bill Dennis wrote: > > I don' t think the Jenkins CRON spec

Re: Job Scheduling per 10 secs

2017-06-08 Thread Bill Dennis
I don' t think the Jenkins CRON spec has seconds resolution. You can build an orchestrater job that is scheduled to run every 1 minute. Then in that job, loop 6 times with a sleep of 10 seconds and build another job. Also use the do not allow concurrent builds. Something like this: pipeline

Re: Job Scheduling per 10 secs

2017-06-07 Thread Ramanathan Muthaiah
Hi , Freestyle or pipeline job configuration has few items that should satisfy what you're looking for. 1) Build Periodically 2) Do not allow concurrent builds. Have you looked at them and tried to customize for your wants? /Ram On Wednesday, June 7, 2017 at 9:37:35 PM UTC+5:30, Ashish