Re: Parallel from build flow plugin never ends

2016-05-05 Thread alexmkv
> > Check if your builds are merged with already queued builds Can you explain, how this can be checked? identical parameters could cause this. All jobs for now must have different params set. There are three parameters, but their combination is unique in parent job. Parent jobs executed sequ

Re: Parallel from build flow plugin never ends

2016-05-05 Thread Stefan Thomasson
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 that executes several other using build flow jenkins plugin. > > Main points of used flow DSL: > > def parallelJobs = []; > jobPara

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