From 82c76bc29f7f4fb29f5b99b622982262a8ae05f2 Mon Sep 17 00:00:00 2001 From: Terry McGuinness Date: Fri, 8 Nov 2024 11:28:59 -0600 Subject: [PATCH] adding echo output in pipeline for sanity check to check bug fix for removing the correct path to RUNDIRS --- ci/Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 8b987a16fa..fc7c847322 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -223,6 +223,7 @@ pipeline { try { // Remove any data in that might still be in the DATAROOT directory from previous runs STMP=sh(script: "${HOMEgfs}/ci/scripts/utils/get_config_var.py STMP ${CUSTOM_WORKSPACE}/RUNTESTS/EXPDIR/${pslot}", returnStdout: true).trim() + echo "Cleaning RUNDIRS if previously ran in: ${STMP}/RUNDIRS/${pslot}" sh(script: "rm -Rf ${STMP}/RUNDIRS/${pslot}") sh(script: "${HOMEgfs}/ci/scripts/run-check_ci.sh ${CUSTOM_WORKSPACE} ${pslot} ${build_system}") sh(script: "${HOMEgfs}/ci/scripts/utils/ci_utils_wrapper.sh cleanup_experiment ${CUSTOM_WORKSPACE}/RUNTESTS/EXPDIR/${pslot}")