From 075585806cfe84f9f85cf103ffd9d9a06720288c Mon Sep 17 00:00:00 2001 From: Marco Giacalone Date: Tue, 1 Oct 2024 16:22:56 +0200 Subject: [PATCH] Update run_generator_tests.sh O2DPG_MC_CONFIG_ROOT is not set in the script, so the CI fails. It is set by default equal to O2DPG_ROOT. This PR should fix the issue seen in https://github.com/AliceO2Group/O2DPG/pull/1756 --- test/run_generator_tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/run_generator_tests.sh b/test/run_generator_tests.sh index 63bc03c15..9024d4aed 100755 --- a/test/run_generator_tests.sh +++ b/test/run_generator_tests.sh @@ -409,6 +409,7 @@ popd > /dev/null # [[ -z {ALIBUILD_HEAD_HASH+x} ]] && export O2DPG_ROOT=${REPO_DIR} # but let's do the same for both local and CI consistently export O2DPG_ROOT=${REPO_DIR} +export O2DPG_MC_CONFIG_ROOT=${O2DPG_ROOT} # prepare our local test directory rm -rf ${TEST_PARENT_DIR} 2>/dev/null