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