3.9 has same issue #10
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: Spack buildcache build | |
on: push | |
env: | |
SPACK_BACKTRACE: please | |
jobs: | |
rebuild: | |
runs-on: ubuntu-22.04 | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Spack | |
uses: spack/setup-spack@v2 | |
with: | |
ref: develop # TODO: v0.22? | |
buildcache: true | |
color: true | |
path: spack | |
- name: Get ifort | |
uses: fortran-lang/setup-fortran@v1 | |
id: setup-fortran | |
with: | |
compiler: intel-classic | |
version: "2021.9" | |
- name: Find compilers | |
run: spack -e . compiler find --mixed-toolchain | |
- name: Concretize | |
run: spack -e . -v concretize | |
- name: Install | |
run: | | |
spack -e . env depfile -o Makefile | |
make -Orecurse -j $(($(nproc) + 1)) SPACK_INSTALL_FLAGS=--no-check-signature | |
- name: Push packages and update index | |
run: | | |
spack -e . mirror set --push --oci-username ${{ github.actor }} --oci-password "${{ secrets.GITHUB_TOKEN }}" local-buildcache | |
spack -e . buildcache push --base-image ubuntu:22.04 --update-index local-buildcache | |
if: ${{ !cancelled() && !failure() }} |