From 7c947b669b222d7fbcd080e0b1aac9a3d4eb3af3 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Thu, 16 Apr 2020 17:01:44 +0200 Subject: [PATCH 1/2] XALT workaround for unit tests --- ci-scripts/ci-runner.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci-scripts/ci-runner.bash b/ci-scripts/ci-runner.bash index 5cc5d8c33e..1c592c40f7 100644 --- a/ci-scripts/ci-runner.bash +++ b/ci-scripts/ci-runner.bash @@ -190,6 +190,8 @@ else checked_exec ./test_reframe.py --rfm-user-config=config/cscs-ci.py if [[ $(hostname) =~ dom ]]; then + # FIXME: XALT is causing linking problems (see UES-823) + module unload xalt PATH_save=$PATH for backend in pbs torque; do echo "==================================" From 779a458d8b6785c9367cb97ba4ea67aaf6784948 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Thu, 16 Apr 2020 18:03:52 +0200 Subject: [PATCH 2/2] Move XALT workaround at the outer level --- ci-scripts/ci-runner.bash | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci-scripts/ci-runner.bash b/ci-scripts/ci-runner.bash index 1c592c40f7..90fb0ca7b8 100644 --- a/ci-scripts/ci-runner.bash +++ b/ci-scripts/ci-runner.bash @@ -146,6 +146,9 @@ python3 -m venv venv.unittests source venv.unittests/bin/activate pip install -r requirements.txt +# FIXME: XALT is causing linking problems (see UES-823) +module unload xalt + echo "==============" echo "Loaded Modules" echo "==============" @@ -190,8 +193,6 @@ else checked_exec ./test_reframe.py --rfm-user-config=config/cscs-ci.py if [[ $(hostname) =~ dom ]]; then - # FIXME: XALT is causing linking problems (see UES-823) - module unload xalt PATH_save=$PATH for backend in pbs torque; do echo "=================================="