Blue Ocean display of sequential stages in parallel stages is flaky

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

XMLWordPrintable

      When there are sequential stages in a parallel stage then the display of them is often not correct and very inconsistent - i.e. sometimes the display changes even from one build to the next.
      This seems to apply only to running builds. As soon as the build is completed the stages are displayed correctly.

      Note: this seems to be related to JENKINS-55320, but that one is about BlueOcean 1.9 and scripted stages. This one is about declarative stages and BlueOcean 1.10.1

       

      This is the relevant part of my Jenkinsfile:

      stage("Run Tests") {
      
          parallel {
              stage("Acceptance Tests") {
      
                  steps {
                      ...
                  }
              }
      
              stage("Integration Tests") {
      
                  steps {
                      ....
                  }
              }
      
              stage("IWG | DBG") {
                  stages {
                      stage("IWG Tests") {
                          steps {
                              ...
                          }
                      }
      
                      stage("DBG Tests") {
                          steps {
                              ...
                          }
      
                      }
                  }
              }
      
              stage("Payment Acceptance Tests") {
                  steps {
                      ...
                  }
              }
          }
      }

            Assignee:
            Unassigned
            Reporter:
            kutzi
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: