-
Bug
-
Resolution: Fixed
-
Minor
-
Jenkins 2.164.3, BO 1.17.0
-
-
1.19.0
We have some pipelines with long duration in parallel sequential steps. In some cases we can't look at stage logs in blue ocean because we can't switch on desired stage. Pipeline example and screenshot added.
I think we can't change focus from one active stage to another in this case. When "Nested A" stage will be finished we'll be able to pick out "Nested B-2".
pipeline { agent any stages { stage('Parallel') { failFast false parallel { stage('Nested B') { stages { stage('Nested B-1') { steps { echo env.STAGE_NAME } } stage('Nested B-2') { steps { sleep time: 1, unit: 'MINUTES' } } } } stage('Nested A') { steps { sleep time: 1, unit: 'MINUTES' } } } } } }
Seems to be fixed in the latest release.