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(parallelJobs)
In log of this job I can see schedule and start of all added jobs, but not completion of them (most of them completed, but some just lost). If I check individual logs for not completed jobs they are really finished, but parent job doesn't see this, parallel never ends and everythings hangs forever.
For long time this job worked fine, but for now it hangs for every build. (There was several changes but for now it's difficult to find reason).