deployJob stage: set to unstable if ansible fail

This commit is contained in:
Roberto Cirillo 2023-03-08 17:18:18 +01:00
parent 2d35aba7d5
commit 2606032208
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -193,7 +193,7 @@ pipeline {
script{
echo "Cron build disabled. New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION} ongoing"
ansiColor('xterm') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') {
checkup("${params.TRIGGER_JOB}", "${params.TRIGGER_VERSION}", "${params.TRIGGER_HOST}");
deploy("${params.TRIGGER_JOB}", "${params.TRIGGER_VERSION}", "${params.TRIGGER_HOST}");
}