-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from sstsimulator/ci-fixes
CI fixes
- Loading branch information
Showing
2 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,9 @@ jobs: | |
run: | | ||
echo "${PWD}/spack/bin" >> "${GITHUB_PATH}" | ||
echo "mirror_name=github-container-registry" >> "${GITHUB_ENV}" | ||
- name: Find compilers for Spack | ||
run: | | ||
spack compiler find --mixed-toolchain | ||
- name: Print Spack configuration | ||
run: | | ||
spack config blame config | ||
|
@@ -54,10 +57,14 @@ jobs: | |
- name: Install sst-core, sst-elements, and sst-macro | ||
run: | | ||
eval "$(spack env activate --sh .)" | ||
# workaround for 2.42 installation issues on macOS | ||
spack add [email protected] | ||
spack add sst-core@${{ matrix.version }} | ||
spack add sst-elements@${{ matrix.version }} | ||
spack add sst-macro@${{ matrix.version }} | ||
spack install --fail-fast --verbose | ||
# macro is causing problems on macOS | ||
# spack add sst-macro@${{ matrix.version }} | ||
spack concretize --reuse --force | ||
spack install --fail-fast | ||
- name: Push packages and update index | ||
run: | | ||
eval "$(spack env activate --sh .)" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
*.pyc | ||
.spack-env/ | ||
\#spack.yaml# | ||
._sst-spack-view/ | ||
spack.lock | ||
sst-spack-view |