From 8a09f1184a2b24d486296325326f40ad0fc59ab5 Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Wed, 8 Mar 2023 16:57:18 +0100 Subject: [PATCH] REMOVE CATCH FROM DEPLOY JOB STAGE --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d1b3927..aba604e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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}"); - } + // } } }