Re: Running jobs in parallel using workflow

2015-08-31 Thread Baptiste Mathus
Did you enable in your test_job the option (approximate name) "allow concurrent build if necessary"? 2015-08-25 10:11 GMT+02:00 Ohad Basan : > Hello > > I am trying to use build flow plugin to run a specific job 5 times > concurrently and then wait for all of the jobs to finish. > this is the gro

Re: running jobs in parallel using workflow plugin

2015-08-26 Thread Ohad Basan
t the job does not use just so that the set > of parameters is different for each. > > > > *From:* jenkins...@googlegroups.com [mailto: > jenkins...@googlegroups.com ] *On Behalf Of *Ohad Basan > *Sent:* Tuesday, August 25, 2015 4:53 AM > *To:* Jenkins Users > *Cc:* m...

RE: running jobs in parallel using workflow plugin

2015-08-25 Thread Ginga, Dick
Subject: Re: running jobs in parallel using workflow plugin this is problematic for me. I need to trigger the same job 5 times with the same parameter value? it's not possible in any way? if not I will hack it at the job level... On Tuesday, August 25, 2015 at 11:32:49 AM UTC+3, Daniel Beck

Re: running jobs in parallel using workflow plugin

2015-08-25 Thread Ohad Basan
this is problematic for me. I need to trigger the same job 5 times with the same parameter value? it's not possible in any way? if not I will hack it at the job level... On Tuesday, August 25, 2015 at 11:32:49 AM UTC+3, Daniel Beck wrote: > > Jenkins will collapse multiple queue items with identi

Re: running jobs in parallel using workflow plugin

2015-08-25 Thread Ohad Basan
I must trigger the job 5 times with the same parameter. On Tuesday, August 25, 2015 at 11:21:16 AM UTC+3, Ohad Basan wrote: > > Hello > > I am trying to use workflow plugin to run a specific job 5 times > concurrently and then wait for all of the jobs to finish. > this is the groovy snippet. > >

Re: running jobs in parallel using workflow plugin

2015-08-25 Thread Daniel Beck
Jenkins will collapse multiple queue items with identical parameters into one. Make sure to pass different parameters. On 25.08.2015, at 10:21, Ohad Basan wrote: > Hello > > I am trying to use workflow plugin to run a specific job 5 times concurrently > and then wait for all of the jobs to fi

running jobs in parallel using workflow plugin

2015-08-25 Thread Ohad Basan
Hello I am trying to use workflow plugin to run a specific job 5 times concurrently and then wait for all of the jobs to finish. this is the groovy snippet. def concurrent=[:] for (int i = 0; i < 6; i++) { concurrent["concurrent${i}"] = { build job: 'test_job', parameters: [[$class: 'Strin

Running jobs in parallel using workflow

2015-08-25 Thread Ohad Basan
Hello I am trying to use build flow plugin to run a specific job 5 times concurrently and then wait for all of the jobs to finish. this is the groovy snippet. def concurrent=[:] for (int i = 0; i < 6; i++) { concurrent["concurrent${i}"] = { build job: 'test_job', parameters: [[$class: 'Str