-
Type:
Improvement
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: blueocean-plugin
There is some debate on how this concept can be visualised in Blue Ocean. Much like nesting stages (see JENKINS-38442) this is difficult for us to visualize in a consistent way that meets user expectations.
The current behaviour in Blue Ocean is to show all the parallels belonging to a stage under the same stage. However, this is currently not working due to a bug in pipeline - see JENKINS-39839.
The following pipeline
node {
stage('S1') {
parallel 'S1.0': { sh('sleep 10') }
parallel 'S1.1.1': { sh('sleep 10') }, 'S1.1.2': { sh('sleep 10') }
}
stage('S2') {
parallel 'S2.0': { sh('sleep 10') }
parallel 'S2.1': { sh('sleep 10') }
}
}
- S1.0 is not displayed
- S2.0 and S2.1 should be under stage 2
- S2.0 and S2.1 are not marked as finished
Additional note:
Made with Pipeline plugin patched with https://github.com/jenkinsci/blueocean-plugin/pull/605
- is blocked by
-
JENKINS-39839 Missing StandardChunkVisitor.parallelBranchEnd() and parallelEnd() events if there are nested parallels
-
- Closed
-