Periodic Reincarnation plugin does not work with Pipeline job type

XMLWordPrintable

    • Type: Patch
    • Resolution: Unresolved
    • Priority: Minor
    • None
    • Environment:
      Jenkins 2.30
      Periodic Reincarnation: 1.9
      Pipeline: 2.4

      Steps to reproduce:

      1. Configure Periodic Reincarnation to restart jobs with RegEx "some string"
      2. Create FreeStyle Job that outputs "some string" and exits 1
      3. Create Pipeline Job that outputs "some string" and exits 1
      4. Run both jobs

      FreeStyle job is restarted, Pipeline Job is not.

      Detailed job configs in my testing:

      FreeStyleJob shell step:

      echo "some string" ; exit 1
      

      PipelineJob script:

      node {
          stage('Test') {
              echo 'some string'
              sh "fail now"  //bad command
          }
      }
      

            Assignee:
            Unassigned
            Reporter:
            Alexander Komarov
            Votes:
            2 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: