-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: pipeline, pipeline-stage-view-plugin
-
Environment:Jenkins 2.24 stageview plugin 2.1
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.