Pipeline graph flashes when updating

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

XMLWordPrintable

      It seems the queued message is showing at an inappropriate time and causing the pipeline graph to flicker.

      See https://www.dropbox.com/s/64alkw0h0hl99go/flickering.mov

      Example Jenkinsfile

      pipeline {
        agent {
          docker {
            image 'maven'
          }
          
        }
        stages {
          stage('Build') {
            steps {
              sh 'ping -c 3 localhost'
            }
          }
          stage('Browser Tests') {
            steps {
              parallel(
                "Firefox": {
                  sh 'echo \'setting up selenium environment\''
                  sh 'ping -c 5 localhost'
                  
                },
                "Safari": {
                  sh 'echo \'setting up selenium environment\''
                  sh 'ping -c 8 localhost'
                  
                },
                "Chrome": {
                  sh 'echo \'setting up selenium environment\''
                  sh 'ping -c 3 localhost'
                  
                },
                "Internet Explorer": {
                  sh 'echo \'setting up selenium environment\''
                  sh 'ping -c 4 localhost'
                  
                }
              )
            }
          }
          stage('Static Analysis') {
            steps {
              sh 'ping -c 3 localhost'
            }
          }
          stage('Deploy') {
            steps {
              sh 'ping -c 3 localhost'
            }
          }
        }
      }
      

            Assignee:
            James Dumay
            Reporter:
            James Dumay
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: