Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-58009

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

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Minor Minor
    • blueocean-plugin
    • 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'
                          }
                      }
                  }
              }
          }
      }
      

       

            Unassigned Unassigned
            zakharovdi Denis Zakharov
            Votes:
            3 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: