Parallel from build flow plugin never ends

2016-05-04 Thread alexmkv
We have one job that executes several other using build flow jenkins plugin. Main points of used flow DSL: def parallelJobs = []; jobParams.each { ... parallelJobs.add({ res = build(jobName , PARAM_NAME: param_value ... another_params ... ) }) } parallel(parallelJob

Re: Parallel from build flow plugin never ends

2016-05-05 Thread alexmkv
ecuted sequentially. On Thursday, May 5, 2016 at 8:09:33 PM UTC+3, stefan thomasson wrote: > > Hi, > Check if your builds are merged with already queued builds, identical > parameters could cause this. > > > 4 maj 2016 kl. 09:28 skrev alexmkv >: > > We have one job tha