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. blueocean-failure.JPG
          blueocean-failure.JPG
          60 kB
        2. Capture.JPG
          Capture.JPG
          17 kB
        3. blueocean.sketch 2016-09-28 15-03-57.png
          blueocean.sketch 2016-09-28 15-03-57.png
          29 kB
        4. Screen Shot 2016-10-03 at 4.13.46 PM.png
          Screen Shot 2016-10-03 at 4.13.46 PM.png
          25 kB
        5. PipelineGraphProposal.png
          PipelineGraphProposal.png
          62 kB
        6. example.png
          example.png
          44 kB
        7. pipeline_mockup.png
          pipeline_mockup.png
          11 kB
        8. image-2017-04-12-16-16-17-144.png
          image-2017-04-12-16-16-17-144.png
          148 kB
        9. image-2017-04-12-16-17-38-285.png
          image-2017-04-12-16-17-38-285.png
          131 kB
        10. Proposed Parallel Stages.JPG
          Proposed Parallel Stages.JPG
          21 kB
        11. alternate zoom in.png
          alternate zoom in.png
          85 kB
        12. image-2017-08-14-10-34-10-452.png
          image-2017-08-14-10-34-10-452.png
          10 kB
        13. screenshot-1.png
          screenshot-1.png
          4 kB
        14. image-2017-10-19-08-24-00-504.png
          image-2017-10-19-08-24-00-504.png
          3 kB
        15. Before.PNG
          Before.PNG
          8 kB
        16. After.png
          After.png
          6 kB
        17. jenkins-weird-masked2.png
          jenkins-weird-masked2.png
          52 kB
        18. current.png
          current.png
          23 kB
        19. Jenkins-substages.png
          Jenkins-substages.png
          9 kB

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

              Created:
              Updated:
              Resolved: