Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-38442

View sequential stages in the pipeline visualization graph

XMLWordPrintable

    • Blue Ocean 1.8.0

      In progress - one level of visualization below parent stage. Additional research and feedback will help us determine future visualizations.

      I've tried using nested stages in order to group each shell script alone to have a meaningful data, however this broken the UI of blueocean and it stopped it from showing showing the variant steps.

      Example 1

      def test = [:]
      
      test["a"] = {
          stage ("a") {
              stage ("ab") {
                  sh "echo stage abc"
              }
              stage ("xyz") {
                  sh "echo stage xyz"
              }
          }
      }
      
      test["b"] = {
          stage ("b") {
              stage ("bb") {
                  sh "echo stage bb"
              }
              stage ("bxz") {
                  sh "echo stagebxyz"
              }
          }
      }
      node {
         //stage 'start'
         parallel test
         stage ('middle') {
             sh "echo middle"
         }
         
      }
      

      Example 2

      node() {
        stage('Build') {
          println 'I prepare the build for the parallel steps'
        }
      
        stage('Test') {
         parallel (
       "win7-vs2012" : { stage("checkout") { }; stage("build") { }; stage("test") { } },
       "win10-vs2015" : { stage("checkout") { }; stage("build") { }; stage("test") { }},
       "linux-gcc5" : { stage("checkout") { }; stage("build") { }; stage("test") { } }
      )
        }
      }
      

        1. After.png
          6 kB
          Gabriel Loewen
        2. alternate zoom in.png
          85 kB
          ben powers
        3. Before.PNG
          8 kB
          Gabriel Loewen
        4. blueocean.sketch 2016-09-28 15-03-57.png
          29 kB
          James Dumay
        5. blueocean-failure.JPG
          60 kB
          mohamed badran
        6. Capture.JPG
          17 kB
          mohamed badran
        7. current.png
          23 kB
          Anentropic
        8. example.png
          44 kB
          Ben Dean
        9. image-2017-04-12-16-16-17-144.png
          148 kB
          Andrew Miller
        10. image-2017-04-12-16-17-38-285.png
          131 kB
          Andrew Miller
        11. image-2017-08-14-10-34-10-452.png
          10 kB
          Joerg Schwaerzler
        12. image-2017-10-19-08-24-00-504.png
          3 kB
          Henri Anttila
        13. Jenkins-substages.png
          9 kB
          Anentropic
        14. jenkins-weird-masked2.png
          52 kB
          Gert van Dijk
        15. pipeline_mockup.png
          11 kB
          Ben Dean
        16. PipelineGraphProposal.png
          62 kB
          Ian Leitch
        17. Proposed Parallel Stages.JPG
          21 kB
          Prateek VERMA
        18. screenshot-1.png
          4 kB
          Henri Anttila
        19. Screen Shot 2016-10-03 at 4.13.46 PM.png
          25 kB
          Kaden Wilkinson

            cloudbees CloudBees Inc.
            mbadran mohamed badran
            Votes:
            206 Vote for this issue
            Watchers:
            233 Start watching this issue

              Created:
              Updated:
              Resolved: