what is up with bash #47
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
name: Development | |
on: | |
push: | |
branches: ['main', 'release/*'] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
ref: | |
- develop | |
- releases/v0.21 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Set up Spack | |
uses: ./ | |
with: | |
ref: ${{ matrix.ref }} | |
buildcache: true | |
color: true | |
- name: Version check | |
run: spack --version | |
- name: Check build cache config | |
run: spack config blame mirrors | |
- name: Check spack-bash shell | |
run: | | |
spack env activate | |
spack env status | |
- name: Check spack-sh shell | |
run: | | |
spack env activate | |
spack env status | |
shell: spack-sh {0} | |
- name: Test install from build cache | |
run: spack install --reuse --no-check-signature --cache-only python |