On 16 Jan 2014, at 19:15, Rodrigo García Peláez <[email protected]> 
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