-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Blocker
-
Component/s: blueocean-plugin
-
Blue Ocean 1.2
Problem
Skipped stage before end node is wonky.
Notes
I assume this is because we went with the shorter start/end node lengths? If the quick fix is to go back to the start/end nodes being the same distance as regular nodes I am ok with that.
Example Jenkisfile
pipeline {
agent { any }
}
stages {
stage('Build') {
steps {
echo 'hello world'
}
}
stage('Browser Tests') {
steps {
echo 'hello world'
}
}
stage('Static Analysis') {
steps {
echo 'hello world'
}
}
stage('Deploy') {
when { branch 'master' }
steps {
echo 'hello world'
}
}
}
}