fix checkup method exit condition

This commit is contained in:
Roberto Cirillo 2024-11-05 14:43:42 +01:00
parent fea4741152
commit 78904c0793
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -206,6 +206,9 @@ pipeline {
catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') {
checkup("${params.TRIGGER_JOB}", "${params.TRIGGER_VERSION}", "${params.TRIGGER_HOST}");
}
if (currentBuild.result == "UNSTABLE") {
return;
}
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
deploy("${params.TRIGGER_JOB}", "${params.TRIGGER_VERSION}", "${params.TRIGGER_HOST}", "${params.TRIGGER_FOO}");
}