Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
Using the following pipeline definition, there is no stage rendering in BO. Only logs.
stage('Start') { node { echo "Start" } } stage('Middle'){ parallel(step1: { node { echo "step 1" } }, step2: { node { echo "step 2 start" parallel ( phase1: { echo "Phase 1" }, phase2: { echo "Phase 2" } ) echo "step 2 end" } }) } stage('End') { node { echo "End" } }
vivek jamesdumay my understanding is that this should show up flattened in some fashion. I am not sure if it is API or visualisation but I thought could at least look if the data is right to start with at some point.