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

Stage view renders incorrectly with stages appearing multiple times.

XMLWordPrintable

      Attached is a screenshot of the stage view rendering weird. Sometimes refreshing the page helps (but not always!).

      Our jenkinsfile essentially looks like this:

      #!groovy
      
      node('linux') {
          stage("Checkout") {
              commitTag = checkout...
          }
      
          stage("Build") {
              parallel (
                  // ....
              )
          }
      }
      
      stage("Docker") {
          node('docker') {
              // ....
          }
      }
      
      stage("Tests") {
          parallel (
              // ....
          )
      }
      
      

      Javascript console shows this log:

      stageview.js:4557 No "data-stageId" on stage.
      stageview.js:4557 No "data-stageId" on stage.
      

      but this doesn't seem to be related to the issue.

            svanoort Sam Van Oort
            sonneveldsmartward Nick Sonneveld
            Votes:
            1 Vote for this issue
            Watchers:
            6 Start watching this issue

              Created:
              Updated: