RE: start jenkins sub jobs parallelly

2016-07-26 Thread pb60704
I tried the below code, but that doesn't ensure the parallel run. #!groovy stage "preparation" node { parallel ( phase1: { echo "phase1" }, phase2: { echo "phase2" } ) } stage "do the build"

Re: start jenkins sub jobs parallelly

2016-07-18 Thread Wayne Warren
There are a couple different ways I would do this but the simplest would be to have a single job that triggers automatically whose primary function is to trigger all the jobs you want running in parallel as downstream of itself. Another way would be to have this "trigger" job make use of the

RE: start jenkins sub jobs parallelly

2016-07-15 Thread Ginga, Dick
If you actually want them to start at the same moment (roughly), and they are all separate jobs, check Build Periodically and enter exactly the same time. e.g. 10 10 * * * this says run at 10:10 AM every day -Original Message- From: jenkinsci-users@googlegroups.com