From 3ac38ad2e84542d04d62d977cda29f926c22e857 Mon Sep 17 00:00:00 2001 From: Terry McGUinness Date: Mon, 3 Feb 2025 23:15:47 -0500 Subject: [PATCH] Jenkins pipeline did not fail gracefully when a build all did not produce an error log file in the logs dir --- ci/Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 67ac0fdb17e..2fa0a0ea60c 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -153,6 +153,8 @@ pipeline { STATUS = 'Failed' error("Failed to build global-workflow on ${Machine}") } + STATUS = 'Failed' + error("Failed to build global-workflow on ${Machine} and no error.logs file found") } sh(script: './link_workflow.sh') }