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