Hi,

Thanks for your response.

My problem is that I'm trying to build it dynamically depending on the 
parameters. I can receive a list of servers to deploy to so I want to run 
the job to deploy to each server in parallel. That list of servers can be 
different every time, as it's passed manually with an extended choice 
parameter, triggered manually.

Any ideas of how I can achieve that?

Thanks and regards
Rodrigo

On Friday, 17 January 2014 09:05:47 UTC, TomDV wrote:
>
> On 16 Jan 2014, at 19:15, Rodrigo García Peláez 
> <[email protected]<javascript:>> 
> wrote: 
>
> > Any ideas? 
> > 
> > When I run sequentially the GENERIC_DEPLOYMENT job quickly I get the job 
> to run twice in parallel. The quite period is 0 for this job. But when I do 
> it from the Build Flow job below it runs them sequentially 
> > 
> > Thanks 
> > Rodrigo 
> > 
>
> Hi, 
>
> In order to make your jobs run parallel you need to split them into 
> different blocks. 
> E.g.: 
>
> parallel ( 
>     { 
>         build( “GENERIC_DEPLOYMENT" ) 
>     }, 
>     { 
>         build( “BACKEND_BUILD_TAG:params["BACKEND_BUILD_TAG"]" ) 
>     }, 
>     { 
>         build( “BACKEND_SERVER:it)" ) 
>     } 
> ) 
>
> Regards, 
> Tom De Vylder 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to