[Blue Ocean] Can't change focus in some parallel sequential stages before completion

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

    • 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'
                          }
                      }
                  }
              }
          }
      }
      

       

            Assignee:
            Unassigned
            Reporter:
            Denis Zakharov
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: