From 5610c31d951086f1ce014729fd9814bc189b831f Mon Sep 17 00:00:00 2001 From: ocaisa Date: Tue, 14 Apr 2026 20:26:21 +0200 Subject: [PATCH] Temporary fix for problems with EB 5.3.0 Stick to EB 5.2.0 while we figure out what is wrong --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 399f7ef..8369719 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -43,11 +43,11 @@ jobs: pid1=$! # then 2023.06 for EB 5 export EESSI_ACCELERATOR_TARGET_OVERRIDE="accel/nvidia/cc90" - ( module load EESSI/2023.06 && module load EasyBuild/5 && module load EESSI-extend && python scripts/generate_data_files.py --eessi-version=2023.06 ) & + ( module load EESSI/2023.06 && module load EasyBuild/5.2 && module load EESSI-extend && python scripts/generate_data_files.py --eessi-version=2023.06 ) & pid2=$! # then 2025.06 for EB 5 (does not have EB4) export EESSI_ACCELERATOR_TARGET_OVERRIDE="accel/nvidia/cc90" - ( module load EESSI/2025.06 && module load EasyBuild/5 && module load EESSI-extend && python scripts/generate_data_files.py --eessi-version=2025.06 ) & + ( module load EESSI/2025.06 && module load EasyBuild/5.2 && module load EESSI-extend && python scripts/generate_data_files.py --eessi-version=2025.06 ) & pid3=$! fail=0 # initialise wait $pid1 || fail=1