-
-
Notifications
You must be signed in to change notification settings - Fork 73
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Jenkins and plugins versions report
Environment
println("Jenkins: ${Jenkins.instance.getVersion()}")
println("OS: ${System.getProperty('os.name')} - ${System.getProperty('os.version')}")
println("Java: ${System.getProperty('java.version')} - ${System.getProperty('java.vm.vendor')} (${System.getProperty('java.vm.name')})")
println "---"
Jenkins.instance.pluginManager.plugins
.collect()
.sort { it.getShortName() }
.each {
plugin -> println("${plugin.getShortName()}:${plugin.getVersion()}")
}
return
What Operating System are you using (both controller, and any agents involved in the problem)?
Linux
Reproduction steps
- Write a pipeline with parallel stages i.e
pipeline {
agent any
stages {
stage('Parallel Stages') {
parallel {
stage('Fast Stage') {
steps {
sh 'sleep 5'
}
}
stage('Slow Stage') {
steps {
sh 'sleep 60'
}
}
}
}
}
}- Run said pipeline and preview on the job page with the list of builds, rather than the individual build graph
Expected Results
The graph view to show some indication of stages still running, as this can make builds look like they are complete, while they are still running
Actual Results
Job page showing build appears to be complete

Build graph showing build is still running

Anything else?
No response
Are you interested in contributing a fix?
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Fields
Give feedbackNo fields configured for issues without a type.