Skip to content

Commit 5b5434a

Browse files
authored
run check_missing_installation.sh in workflow
1 parent c4b39d3 commit 5b5434a

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/test-check_easystacks.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,13 @@ jobs:
6161
env | grep ^EESSI | sort
6262
6363
# check for missing installations if a file in the easystacks directory is changed
64-
echo
65-
66-
# first check the CPU-only builds for this CPU target
67-
#echo "just run check_missing_installations.sh (should use easystacks/software.eessi.io/${{matrix.EESSI_VERSION}}/eessi-${{matrix.EESSI_VERSION}}-*.yml with latest EasyBuild release)"
68-
#for easystack_file in $(EESSI_VERSION=${{matrix.EESSI_VERSION}} .github/workflows/scripts/only_latest_easystacks.sh); do
69-
# echo "check missing installations for ${easystack_file}..."
70-
# ./check_missing_installations.sh ${easystack_file}
71-
# ec=$?
72-
# if [[ ${ec} -ne 0 ]]; then echo "missing installations found for ${easystack_file}!" >&2; exit ${ec}; fi
73-
#done
64+
echo "check for missing installation in changed easystack files"
65+
for easystack_file in ${{ steps.changes.outputs.changed_files }}; do
66+
echo "check missing installatios for ${easystack_file}..."
67+
./check_missing_installations.sh ${easystack_file}
68+
ec=$?
69+
echo "print the output of missing: ${eb_missing_out}"
70+
done
7471
7572
# now check the accelerator builds for this CPU target
7673
#accelerators=$(echo "${EESSI_ACCELERATOR_TARGETS}" | yq ".${EESSI_SOFTWARE_SUBDIR_OVERRIDE}[]")

0 commit comments

Comments
 (0)