-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: blueocean-plugin
-
Environment:Jenkins 2.138.2
pipeline {
agent any
options {
buildDiscarder logRotator(artifactNumToKeepStr: '5', numToKeepStr: '5')
}
stages {
stage ("Parallel") {
parallel {
stage ("Path 1") {
steps {
sh 'sleep 60'
}
}
stage ("Path 2") {
when {
branch 'dummy_for_easy_stage_skip'
beforeAgent true
}
steps {
sh 'sleep 60'
}
}
}
}
}
}
Â
As long this pipeline runs you cannot see the log for the stage "Path 1". This is problematic on long runs with many steps.
Additional the message "Queued: Waiting for run to start" on both stages is misleading, as the first stage is running and the second stage is skipped already.