Skip to content

Commit

Permalink
CI: refactor spack build
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Apr 5, 2024
1 parent 77d59d9 commit 056d0fc
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,22 @@ jobs:
buildcache: true # Configure oci://ghcr.io/spack/github-actions-buildcache
color: true # Force color output (SPACK_COLOR=always)
path: spack # Where to clone Spack
- run: |
spack external find
spack compiler find
spack install seacas~mpi

- name: Configure Spack externals
shell: bash -l {0}
run: |
spack external find
spack compiler find
- name: Build non-mpi SEACAS
shell: bash -l {0}
run: |
spack spec seacas~mpi
spack install seacas~mpi
- name: Build parallel SEACAS
shell: bash -l {0}
run: |
spack spec seacas
spack install seacas

0 comments on commit 056d0fc

Please sign in to comment.