-
Type:
Patch
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: periodic-reincarnation-plugin
-
None
-
Environment:Jenkins 2.30
Periodic Reincarnation: 1.9
Pipeline: 2.4
Steps to reproduce:
- Configure Periodic Reincarnation to restart jobs with RegEx "some string"
- Create FreeStyle Job that outputs "some string" and exits 1
- Create Pipeline Job that outputs "some string" and exits 1
- 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
}
}