From ec4bbb7856cae11195cc8747a3a809fe8a7a3eed Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Tue, 10 May 2022 15:54:13 +0200 Subject: [PATCH] catch error set to UNSTABLE for system stage --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c24ab5d..d414d7b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -78,7 +78,7 @@ pipeline { for (component in components) { stage(component){ println "Deploy on going of component: $component" - catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') { + catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') { checkup("${component.name}", "${component.version}", "${component.host}"); deploy("${component.name}", "${component.version}", "${component.host}"); }