>
> 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
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
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