-
Bug
-
Resolution: Duplicate
-
Major
-
None
Given the following pipeline
node { //out of the stage sh ('sleep 10') stage('S1') { // prepare the parallel jobs sh ('sleep 20') // run them parallel 'S1.1.1': { sh('sleep 10') }, 'S1.1.2': { sh('sleep 10') } // another one sh ('sleep 10') } // cleanup sh ('sleep 10') }
All the steps outstage stage // parallels do not show up in blue ocean.
This very annoying. You sometimes want to do some prep in a stage before running parallels.
- is duplicated by
-
JENKINS-35836 Steps outside a stage or within a stage but outside a parallel do not get visualized
- Closed