Re: Parallel builds with Build Flow

2014-04-11 Thread jhoomsharabi
I don't know where and how to use this fix https://issues.jenkins-ci.org/browse/JENKINS-2181 -Original Message- From: jhoomsharabi To: jenkinsci-users Sent: Sat, Apr 12, 2014 10:08 am Subject: Re: Parallel builds with Build Flow Hi, Any progress on this parallel build proce

Re: Parallel builds with Build Flow

2014-04-11 Thread jhoomsharabi
-Original Message- From: hi To: jenkinsci-users Sent: Thu, Mar 27, 2014 9:41 pm Subject: Re: Parallel builds with Build Flow Just correcting a typo with job names. parallel ( { build("job1", id:"1", type:"foo") }, { build("job1"

Re: Parallel builds with Build Flow

2014-03-27 Thread hi
Dick" >> wrote: >> >> I think you can only do that in each job definition, that is in the >> specification for Job1, 2, and 3. I don’t think you can pass anything to >> the build method to do that. >> >> >> >> *From:* jenki

Re: Parallel builds with Build Flow

2014-03-27 Thread hi
ion, that is in the > specification for Job1, 2, and 3. I don’t think you can pass anything to > the build method to do that. > > > > *From:* jenkins...@googlegroups.com [ > mailto:jenk...@googlegroups.com ] *On Behalf Of * > h...@renatorodrigues.me > *Sent:* Thursday, March 27,

RE: Parallel builds with Build Flow

2014-03-27 Thread Ginga, Dick
Ah, good to know, thanks. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Marc MacIntyre Sent: Thursday, March 27, 2014 12:02 PM To: jenkinsci-users@googlegroups.com Subject: Re: Parallel builds with Build Flow Use the node label parameter plugin

Re: Parallel builds with Build Flow

2014-03-27 Thread Marc MacIntyre
, 2014 11:36 AM > To: jenkinsci-users@googlegroups.com > Subject: Parallel builds with Build Flow > > Build Flow plugin allows one to have parallel builds in a simple way: > > parallel ( > // job 1, 2 and 3 will be scheduled in parallel. > { build("job1") },

RE: Parallel builds with Build Flow

2014-03-27 Thread Ginga, Dick
: Thursday, March 27, 2014 11:36 AM To: jenkinsci-users@googlegroups.com Subject: Parallel builds with Build Flow Build Flow plugin allows one to have parallel builds in a simple way: parallel ( // job 1, 2 and 3 will be scheduled in parallel. { build("job1") }, { b

Parallel builds with Build Flow

2014-03-27 Thread hi
Build Flow plugin allows one to have parallel builds in a simple way: parallel ( // job 1, 2 and 3 will be scheduled in parallel.{ build("job1") }, { build("job2") }, { build("job3") } )// job4 will be triggered after jobs 1, 2 and 3 completebuild("job4") Is it possible to delegat