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

Pipeline graph flashes when updating

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Critical Critical
    • blueocean-plugin
    • None
    • Blue Ocean 1.4 - beta 2

      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'
            }
          }
        }
      }
      

            jamesdumay James Dumay
            jamesdumay James Dumay
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: