Skip to content

Commit 1110fe9

Browse files
author
Spencer Bryngelson
committed
fix: preserve hipfort in Frontier partial clean (no internet on compute nodes)
1 parent 40e2de5 commit 1110fe9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/common/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ fi
2626
# Phoenix: always start fresh to avoid SIGILL from stale binaries compiled
2727
# on a different microarchitecture.
2828
# Frontier: wipe only compiled Fortran staging/install slugs; preserve dep
29-
# dirs (silo, hdf5, lapack, fftw) which were built on the login node and
30-
# cannot be re-fetched from a compute node (no internet).
29+
# dirs (silo, hdf5, lapack, fftw, hipfort) which were built on the login node
30+
# and cannot be re-fetched from a compute node (no internet).
3131
if [ "$job_cluster" = "phoenix" ]; then
3232
source .github/scripts/clean-build.sh
3333
clean_build
@@ -36,7 +36,7 @@ elif [ "$job_cluster" = "frontier" ] || [ "$job_cluster" = "frontier_amd" ]; the
3636
if [ -d "$_dir" ]; then
3737
for _sub in "$_dir"*/; do
3838
_name=$(basename "$_sub")
39-
case "$_name" in silo|hdf5|lapack|fftw) continue ;; esac
39+
case "$_name" in silo|hdf5|lapack|fftw|hipfort) continue ;; esac
4040
rm -rf "$_sub"
4141
done
4242
fi

0 commit comments

Comments
 (0)