-
Bug
-
Resolution: Fixed
-
Major
-
-
Blue Ocean 1.4 - beta 3, Blue Ocean 1.4 - beta 2
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"} } } } } }