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

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

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Major
    • Resolution: Unresolved
    • blueocean-plugin
    • None
    • jenkins 2.303.2
      blue ocean 1.25.0

    Description

      I if run this pipeline skipping the second axis of a matrix I cannot see the steps of the first axis 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

      Attachments

        Activity

          There are no comments yet on this issue.

          People

            Unassigned Unassigned
            gdemengin Guillaume DeMengin
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: