-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Critical
-
Component/s: blueocean-plugin
-
None
-
Environment:Jenkins 2.89
Blue Ocean 1.35
Pipeline Graph Analysis Plugin 1.6
-
Blue Ocean 1.5 - beta 3
Related to JENKINS-47219
Problem
When running a pipeline with parallel stages, the state of those stages is incorrectly displayed when a previous one has failed.
JenkinsFile
pipeline {
agent any
stages {
stage('Run Tests') {
steps {
bat 'exit 1'
}
}
stage('Deploy') {
parallel {
stage('Dev') {
when {
branch 'master'
}
steps {
echo 'hello master'
}
}
stage('QA') {
steps {
echo 'hello stable'
}
}
}
}
}
}
Â
Log output:
Â
First time build. Skipping changelog. [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] stage [Pipeline] { (Run Tests) [Pipeline] bat [parallel-stage-complete-bug-JNC4NY4S375GSWLOMCSNQAMH4OIZKQT7UCEAS4OYPXLQVHI6A3XA] Running batch script C:\...>exit 1 [Pipeline] } [Pipeline] // stage [Pipeline] stage [Pipeline] { (Deploy) Stage 'Deploy' skipped due to earlier failure(s) [Pipeline] parallel [Pipeline] [Dev] { (Branch: Dev) [Pipeline] [QA] { (Branch: QA) [Pipeline] [Dev] stage [Pipeline] [Dev] { (Dev) [Pipeline] [QA] stage [Pipeline] [QA] { (QA) Stage 'Dev' skipped due to earlier failure(s) Stage 'QA' skipped due to earlier failure(s) [Pipeline] [Dev] } [Pipeline] [QA] } [Pipeline] [Dev] // stage [Pipeline] [QA] // stage [Pipeline] [Dev] } [Pipeline] [QA] } [Pipeline] // parallel [Pipeline] } [Pipeline] // stage [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline ERROR: script returned exit code 1 Finished: FAILURE
This gives the following output:

Result when the pipe is successful:
(Changing the exit 1 to exit 0)

FYI: cliffmeyers
- is duplicated by
-
JENKINS-50399 Skipped steps show as passed - plugins uptodate but still nothing
-
- Closed
-
- links to