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

A build failure in a parallel section does not mark it as failed

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Critical Critical
    • build-flow-plugin
    • None

      Using version 0.5, I still get this problem. Using the following flow:

      guard {
         build ("test-a")
         parallel (
            { build("test-b") },
            { build("test-c") }
         )
         parallel (
            { build("test-d") },
            { build("test-e") }
         )
      } rescue {
         build ("test-f")
      }
      

      Whenever "test-b" job fails (for example), "test-d" and "test-e" will be executed still. Is there something wrong with the syntax?

            ndeloof Nicolas De Loof
            damien_coraboeuf Damien Coraboeuf
            Votes:
            3 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: