-
Bug
-
Resolution: Fixed
-
Major
-
None
The following jenkins pipeline snippets results in "ERROR: Using a milestone step inside parallel is not allowed". But the milestone step is not used inside the parallel, it is outside.
parallel (
foo: {}, bar: {}
)
stage ('test') {
milestone 1
}
[JENKINS-38464] milestone step incorrectly detected as running inside parallel
Priority | Original: Minor [ 4 ] | New: Major [ 3 ] |
Assignee | Original: Antonio Muñiz [ amuniz ] | New: Sam Van Oort [ svanoort ] |
Status | Original: Open [ 1 ] | New: In Progress [ 3 ] |
Status | Original: In Progress [ 3 ] | New: In Review [ 10005 ] |
Ran into this as well. It seems to fail if the milestone is inside any block if a parallel block is in the script.
The following works.
Where as this will fail.
Yet this will work.