Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/test-software.eessi.io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,13 @@ jobs:
eb_version=$(echo ${easystack_file} | sed 's/.*eb-\([0-9.]*\).*.yml/\1/g')
echo "checking ${easystack_file} with EasyBuild ${eb_version}..."

if [[ "$easystack_file" == */additional_arch/* ]]; then
if [[ "$easystack_file" != *"/$EESSI_CPU_FAMILY/"* ]]; then
echo "Detected an additional arch with CPU family not matching host ($EESSI_CPU_FAMILY), skipping CI for $easystack_file"
continue
fi
fi

module purge
module load EasyBuild/${eb_version}

Expand Down Expand Up @@ -410,6 +417,8 @@ jobs:
exit 1
else
echo "SUCCESS: $cpu"
# Show any architectures that were intentionally skipped
grep "Detected an additional arch" "$log" || true
fi
done

Expand Down
Loading
Loading