Skip to content

Commit

Permalink
disable spack latest_release (#2246)
Browse files Browse the repository at this point in the history
The spack CI test fails when a point release (`latest_release`) for
`spack` is selected, but works for the `develop` branch. This is most
likely connected to the external `spack` buildcache, maintained by spack
developers (https://github.com/spack/github-actions-buildcache).
Therefore, we disable the `latest_release` case until a workaround is
implemented or a compatible `spack` buildcache is available.
  • Loading branch information
boeschf authored Jan 11, 2024
1 parent 21f5029 commit 93fb291
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
strategy:
matrix:
python-version: ['3.10']
spack-version: ['develop', 'latest_release']
# disable latest_release for now, pending a compatible buildcache
#spack-version: ['develop', 'latest_release']
spack-version: ['develop']

fail-fast: false

Expand Down

0 comments on commit 93fb291

Please sign in to comment.