📊 Improve spike delivery #231
Workflow file for this run
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 | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: 'doc/**' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: 'doc/**' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
python-version: ['3.10'] | |
spack-version: ['develop', 'latest_release'] | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: arbor | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Spack cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.spack-cache | |
key: spack-cache-${{ matrix.os }}-${{ matrix.spack-version }}-${{ github.run_id }} | |
restore-keys: spack-cache-${{ matrix.os }}-${{ matrix.spack-version }}- | |
- name: Get Spack (develop) | |
if: ${{ matrix.spack-version == 'develop' }} | |
run: | | |
git clone -c feature.manyFiles=true --depth 1 https://github.com/spack/spack.git | |
- name: Get Spack (latest_release) | |
if: ${{ matrix.spack-version == 'latest_release' }} | |
run: | | |
wget -O latest_spack.tar.gz "$(curl -sH "Accept: application/vnd.github.v3+json" https://api.github.com/repos/spack/spack/releases/latest | grep tarball_url | cut -d '"' -f 4)" | |
tar xfz latest_spack.tar.gz | |
mv spack*/ spack | |
- name: Prep | |
run: | | |
mkdir ~/.spack | |
cp arbor/spack/config.yaml ~/.spack | |
source spack/share/spack/setup-env.sh | |
spack repo create custom_repo | |
mkdir -p custom_repo/packages/arbor | |
spack repo add custom_repo | |
spack reindex | |
cp arbor/spack/package.py custom_repo/packages/arbor | |
- name: Build Arbor | |
run: | | |
source spack/share/spack/setup-env.sh | |
cd arbor | |
spack dev-build arbor@develop +python | |
- name: Load Arbor and verify installation, Python Examples. | |
run: | | |
source spack/share/spack/setup-env.sh | |
spack load arbor | |
cd arbor | |
scripts/run_python_examples.sh | |
scripts/test_executables.sh | |
- name: Remove Arbor | |
run: | | |
source spack/share/spack/setup-env.sh | |
spack uninstall -yafR arbor | |
- name: Failure, upload logs | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: spack-log-${{ matrix.spack-version }} | |
path: | | |
arbor/*.txt | |
!arbor/CMakeLists.txt |