From 92c84fdf7bceca5b0c76809a23edae1573d6d506 Mon Sep 17 00:00:00 2001 From: andrew clark Date: Tue, 7 Oct 2025 15:41:13 -0600 Subject: [PATCH] Adding debugging --- Jenkinsfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8adf122f77..58dd7fff23 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1167,7 +1167,16 @@ pipeline { agent{ label rocmnode("nogpu") } steps { script { - env.SHOULD_RUN_CI = String.valueOf(params.FORCE_CI.toBoolean() || shouldRunCICheck()) + def forceCI = params.FORCE_CI.toBoolean() + def shouldRunCI = shouldRunCICheck() + def finalResult = forceCI || shouldRunCI + + echo "DEBUG: FORCE_CI param = ${params.FORCE_CI}" + echo "DEBUG: forceCI boolean = ${forceCI}" + echo "DEBUG: shouldRunCICheck() = ${shouldRunCI}" + echo "DEBUG: finalResult (forceCI || shouldRunCI) = ${finalResult}" + + env.SHOULD_RUN_CI = String.valueOf(finalResult) echo "SHOULD_RUN_CI: ${env.SHOULD_RUN_CI}" } }