-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
Jenkins core 2.144
Blueocean 1.8.4
If you launch more than 10 downstream job from a pipeline the Blueocean visualization hands, and it is not possible to see the results of all downstream jobs, it is easy to replicate
1- Create a Pipeline job dummy
node {
echo 'Hello World'
}
2- Create a Pipeline job trigger dummy
pipeline { agent any stages { stage("test") { agent any steps { sh 'export' script{ for(def i = 0; i < 10; i++){ build(job: "dummy") } } } } } }
3- build Pipeline job trigger dummy
4- Go to the Blueocian build view of that build
5- The Bluocean view stuck and the browser tab hands, there is no errors in the javascript console nor developer tools network tab
[JENKINS-54104] Blueocean cannot display 10 downstream jobs
Description |
Original:
If you launch more than 10 downstream job from a pipeline the Blueocean visualization hands, and it is not possible to see the results of all downstream jobs, it is easy to replicate 1- Create a Pipeline job dummy {code} node { echo 'Hello World' } {code} 2- Create a Pipeline job trigger dummy {code} pipeline { agent any stages { stage("test") { agent any steps { sh 'export' script{ for(def i = 0; i < 10; i++){ build(job: "dummy") } } } } } } {code} 3- build Pipeline job trigger dummy 4- Go to the Blueocian build view of that build !Screen Shot 2018-10-16 at 16.01.15.png|width=500px |
New:
If you launch more than 10 downstream job from a pipeline the Blueocean visualization hands, and it is not possible to see the results of all downstream jobs, it is easy to replicate 1- Create a Pipeline job dummy {code} node { echo 'Hello World' } {code} 2- Create a Pipeline job trigger dummy {code} pipeline { agent any stages { stage("test") { agent any steps { sh 'export' script{ for(def i = 0; i < 10; i++){ build(job: "dummy") } } } } } } {code} 3- build Pipeline job trigger dummy 4- Go to the Blueocian build view of that build !Screen Shot 2018-10-16 at 16.01.15.png|width=500px! |
Description |
Original:
If you launch more than 10 downstream job from a pipeline the Blueocean visualization hands, and it is not possible to see the results of all downstream jobs, it is easy to replicate 1- Create a Pipeline job dummy {code} node { echo 'Hello World' } {code} 2- Create a Pipeline job trigger dummy {code} pipeline { agent any stages { stage("test") { agent any steps { sh 'export' script{ for(def i = 0; i < 10; i++){ build(job: "dummy") } } } } } } {code} 3- build Pipeline job trigger dummy 4- Go to the Blueocian build view of that build !Screen Shot 2018-10-16 at 16.01.15.png|width=500px! |
New:
If you launch more than 10 downstream job from a pipeline the Blueocean visualization hands, and it is not possible to see the results of all downstream jobs, it is easy to replicate 1- Create a Pipeline job dummy {code} node { echo 'Hello World' } {code} 2- Create a Pipeline job trigger dummy {code} pipeline { agent any stages { stage("test") { agent any steps { sh 'export' script{ for(def i = 0; i < 10; i++){ build(job: "dummy") } } } } } } {code} 3- build Pipeline job trigger dummy 4- Go to the Blueocian build view of that build 5- The Bluocean view stuck and the browser tab hands, there is no errors in the javascript console nor developer tools network tab !Screen Shot 2018-10-16 at 16.01.15.png|width=500px! |
Environment |
New:
Jenkins core 2.144 Blueocean 1.8.4 |
Summary | Original: Blueocean can not display 10 downstream jobs | New: Blueocean cannot display 10 downstream jobs |
Issue Type | Original: Task [ 3 ] | New: Bug [ 1 ] |
Comment | [ I have seen the same problem. Starting 20-30+ downstream jobs in sequence it does not show them all in Blue Ocean. ] |