REMOVE CATCH FROM DEPLOY JOB STAGE

This commit is contained in:
Roberto Cirillo 2023-03-08 16:57:18 +01:00
parent 793a27a3c0
commit 8a09f1184a
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -193,10 +193,10 @@ 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: 'SUCCESS', stageResult: 'FAILURE') {
checkup("${params.TRIGGER_JOB}", "${params.TRIGGER_VERSION}", "${params.TRIGGER_HOST}");
deploy("${params.TRIGGER_JOB}", "${params.TRIGGER_VERSION}", "${params.TRIGGER_HOST}");
}
// }
}
}