-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Critical
-
Component/s: blueocean-plugin
-
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'
}
}
}
}
- mentioned in
-
Page Loading...