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

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

              Created:
              Updated:
              Resolved: