wrong display of first matrix axis in blue ocean when skipping another axis

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

XMLWordPrintable

      I if run this pipeline skipping the second axis of a matrix I cannot see the steps of the first axis NOT skipped, during and after the run

      pipeline
      {
          agent none
          stages
          {
              stage('s1') {
                  matrix {
                      axes {
                          axis {
                              name 'axis'
                              values 'axis1', 'axis2', 'axis3'
                          }
                      }
                      stages {
                          stage('s2') {
                              when {
                                  beforeAgent true
                                  expression { axis != 'axis2' }
                              }
                              agent none
                              steps {
                                  print axis
                              }
                          }
                      }
                  }
              }
          }
      }
      

      actually I cannot even click on axis1

      In the logs I can see that it’s executed: it’s only a rendering issue
      It happens only if I skip the first axis. If I skip any other axis it’s visible

      It looks similar to JENKINS-49131 but here the active stage is not accessible even after the whole pipeline is over

            Assignee:
            Unassigned
            Reporter:
            Guillaume DeMengin
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: