From 94c04f85405e426c6eac64b67e0b2854ea860ee9 Mon Sep 17 00:00:00 2001 From: Alan O'Cais Date: Fri, 18 Oct 2024 15:24:52 +0200 Subject: [PATCH] Simplify things further --- .github/workflows/test-software.eessi.io.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/test-software.eessi.io.yml b/.github/workflows/test-software.eessi.io.yml index 2e7a8e2724..025f797d52 100644 --- a/.github/workflows/test-software.eessi.io.yml +++ b/.github/workflows/test-software.eessi.io.yml @@ -63,9 +63,6 @@ jobs: if grep -q 2022b <<<"${easystack_file}"; then # skip the check of installed software on zen4 for foss/2022b builds continue - elif grep -q CUDA <<<"${easystack_file}"; then - # skip the check of install CUDA software in the CPU path for zen4 - continue fi fi echo "check missing installations for ${easystack_file}..." @@ -83,12 +80,6 @@ jobs: module use ${EESSI_SOFTWARE_PATH}/accel/${accel}/modules/all echo "checking missing installations for accelerator ${accel} using modulepath: ${MODULEPATH}" for easystack_file in $(EESSI_VERSION=${{matrix.EESSI_VERSION}} ACCEL_EASYSTACKS=1 .github/workflows/scripts/only_latest_easystacks.sh); do - if [ ${{matrix.EESSI_SOFTWARE_SUBDIR_OVERRIDE}} = "x86_64/amd/zen4" ]; then - if grep -q CUDA <<<"${easystack_file}"; then - # skip the check of install CUDA software in the CPU path for zen4 - continue - fi - fi echo "check missing installations for ${easystack_file}..." ./check_missing_installations.sh ${easystack_file} ec=$?