Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Component/s: blueocean-plugin
-
Labels:
-
Similar Issues:
-
Epic Link:
-
Sprint:Blue Ocean 1.4 - beta 3, Blue Ocean 1.4 - beta 2
Description
In a pipeline with parallel stages, the parallel stages are shown as "passed" even when they are not executed. If a preceding stage fails, the parallel stages are still shown as passed.
Sample pipeline code to reproduce:
pipeline { agent any stages { stage("first stage") { steps {sh "zsleep 5"} } stage('Three parallel stages with different execution time'){ parallel{ stage("One"){ steps {sh "sleep 5"} } stage("Two"){ steps {sh "sleep 10"} } stage("Three"){ steps {sh "sleep 15"} } } } } }
Testing Notes: