Skip to content

Commit 2d3c781

Browse files
put runtime pkg removal after all any spack updates
1 parent ea5250a commit 2d3c781

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ubuntu_gcc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
shell: bash
2121
run: |
2222
. /entrypoint.sh
23-
spack uninstall --force --yes-to-all gcc-runtime # prevents CMake config warnings
2423
############################
2524
## Modify Spack installation, if needed
2625
##
@@ -37,6 +36,7 @@ jobs:
3736
#spack concretize --fresh
3837
#spack install --only-concrete
3938
############################
39+
spack uninstall --force --yes-to-all gcc-runtime # prevents CMake config warnings
4040
export CC=mpicc
4141
export FC=mpif90
4242
cmake -S ufs_utils -B build -DCMAKE_INSTALL_PREFIX=install

.github/workflows/ubuntu_intel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
shell: bash
3232
run: |
3333
. /entrypoint.sh
34-
spack uninstall --force --yes-to-all gcc-runtime intel-oneapi-runtime # prevents CMake config warnings
3534
############################
3635
## Modify Spack installation, if needed
3736
##
@@ -48,6 +47,7 @@ jobs:
4847
#spack concretize --fresh
4948
#spack install --only-concrete
5049
############################
50+
spack uninstall --force --yes-to-all gcc-runtime intel-oneapi-runtime # prevents CMake config warnings
5151
cmake -S ufs_utils -B build -DCMAKE_INSTALL_PREFIX=install
5252
cmake --build build --parallel 4 --verbose
5353
ctest --test-dir build --parallel 4 --output-on-failure

0 commit comments

Comments
 (0)