Re: Want to build Jenkins job every after 15 seconds

2018-08-22 Thread athavan
However, the build schedule cron in Jenkins can have a minimum value of 1 minute. As far as I know, it won't help for frequency less than a minute. On Thursday, August 23, 2018 at 12:15:55 AM UTC+5:30, Robert Rajendra wrote: > > Configure a build schedule in jenkins or set a cron under pol scm

Re: Want to build Jenkins job every after 15 seconds

2018-08-22 Thread Robert Rajendra
Configure a build schedule in jenkins or set a cron under pol scm to run the job On Wed, 22 Aug 2018, 5:22 pm , wrote: > You may run two Jenkins job with the same code .Say, a master and slave > job. Configure the "quiet period" as 15 seconds for both the jobs and Set > the Master job to build

Re: Want to build Jenkins job every after 15 seconds

2018-08-22 Thread athavan
You may run two Jenkins job with the same code .Say, a master and slave job. Configure the "quiet period" as 15 seconds for both the jobs and Set the Master job to build after slave and Slave job to build after Master using the Build Trigger setings. Now start the Master job. Both the jobs

RE: Want to build Jenkins job every after 15 seconds

2014-07-02 Thread Matthew.Webber
On the job configuration page, there is a section called “Build Triggers”. Select “Build periodically” and enter your schedule. There is help text available. From: Swapnil Pawar [mailto:vedant.swap...@gmail.com] Sent: 02 July 2014 09:42 To: jenkinsci-users@googlegroups.com Subject: Want to

Re: Want to build Jenkins job every after 15 seconds

2014-07-02 Thread Daniel Beck
You can't. Are you sure you're using the right tool for the job? https://en.wiktionary.org/wiki/if_all_you_have_is_a_hammer,_everything_looks_like_a_nail On 02.07.2014, at 10:42, Swapnil Pawar vedant.swap...@gmail.com wrote: Can you please tell me How I can schedule Jenkins Job which will

Re: Want to build Jenkins job every after 15 seconds

2014-07-02 Thread Stephen Connolly
You could write a custom plugin. It's not to hard. The built in triggers are checked once every minute so the best resolution you will get with those is once per minute. There is nothing stopping you from implementing a custom trigger that causes builds to be triggered every second or every 15

Re: Want to build Jenkins job every after 15 seconds

2014-07-02 Thread Stephen Connolly
I agree that it does sound like somebody trying to solve the wrong problem... we'll see which road he takes... does he push back on the requirement and find a better solution that does not involve running a job every 15 seconds... or does he get his feet wet and write a custom plugin (and a month

Re: Want to build Jenkins job every after 15 seconds

2014-07-02 Thread Swapnil Pawar
Hi Rob, 1: Do you want each job to launch 15 seconds after the previous one *launched*, or after the previous one *finished*? - yes..have to laucnh the after previous one finished Context : I am executing the Jmeter scripts after every 15 seconds through the Jenkins to check the health of

RE: Want to build Jenkins job every after 15 seconds

2014-07-02 Thread Rob Mandeville
Jenkins job every after 15 seconds Hi Rob, 1: Do you want each job to launch 15 seconds after the previous one launched, or after the previous one finished? - yes..have to laucnh the after previous one finished Context : I am executing the Jmeter scripts after every 15 seconds through the Jenkins

Re: Want to build Jenkins job every after 15 seconds

2014-07-02 Thread Geoff Cummings
Of *Swapnil Pawar *Sent:* Wednesday, July 02, 2014 8:23 AM *To:* jenkinsci-users@googlegroups.com *Subject:* Re: Want to build Jenkins job every after 15 seconds Hi Rob, 1: Do you want each job to launch 15 seconds after the previous one *launched*, or after the previous one *finished*? - yes