Skip to content

Commit

Permalink
cache entire spack dir
Browse files Browse the repository at this point in the history
  • Loading branch information
idigs authored Feb 20, 2024
1 parent b3a2e96 commit fee4722
Showing 1 changed file with 64 additions and 67 deletions.
131 changes: 64 additions & 67 deletions .github/workflows/spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,26 @@ jobs:
- name: grab main project
uses: actions/checkout@v4

#
# git clone --depth=1 --single-branch --branch v0.21.1 https://github.com/spack/spack.git
#
- name: grab spack
uses: actions/checkout@v4
with:
repository: 'spack/spack'
ref: 'v0.21.1'
path: './spack'

- name: spack cache
id: spack-cache
uses: actions/cache@v3
with:
key: spack-cache-sandlot-2
key: spack-cache-sandlot-3
path: |
./spack_sandlot_lock
./spack
./spack_sandlot_mirror
./spack_sandlot_env
- if: ${{ steps.spack-cache.outputs.cache-hit != 'true' }}
name: grab spack
uses: actions/checkout@v4
with:
repository: 'spack/spack'
ref: 'v0.21.1'
path: './spack'
#
# git clone --depth=1 --single-branch --branch v0.21.1 https://github.com/spack/spack.git
#

- if: ${{ steps.spack-cache.outputs.cache-hit != 'true' }}
name: create spack cache
Expand All @@ -51,7 +53,7 @@ jobs:
rm -rf ./spack_sandlot_mirror
spack mirror create -d ./spack_sandlot_mirror --all
spack mirror add nacho ./spack_sandlot_mirror
spack mirror add sandlot ./spack_sandlot_mirror
spack gpg create "My Name" "<[email protected]>"
Expand All @@ -71,57 +73,52 @@ jobs:
spack env deactivate
# job_two:
# needs: job_one
# runs-on: ubuntu-latest
# steps:
# - name: grab main project
# uses: actions/checkout@v2
#
# - name: grab spack
# uses: actions/checkout@v2
# with:
# repository: spack/spack
# path: ./spack
#
# - name: spack cache
# id: spack-cache
# uses: actions/cache@v3
# with:
# key: spack-cache-sandlot-1
# path: |
# ~/mirror
# ~/spack.lock
#
# - name: build korc
# run: |
# . ./spack/share/spack/setup-env.sh
#
# spack env create -d . spack.lock
# spack env activate -p -d ./
#
# spack config add "config:install_tree:padded_length:128"
#
# spack mirror add nacho ~/mirror
# spack mirror list
#
# spack install --no-check-signature --add [email protected]
# spack load [email protected]
# spack compiler find
#
# spack install --no-check-signature --add cmake %[email protected]
# spack load cmake %[email protected]
#
# spack install --no-check-signature --add hdf5+fortran+mpi %[email protected]
# spack load hdf5+fortran+mpi %[email protected]
#
# set -x
# which cmake
# which gfortran
# gfortran --version
# set +x
#
# ./build.sh
#
# spack env deactivate
#
job_two:
needs: job_one
runs-on: ubuntu-latest
steps:
- name: grab main project
uses: actions/checkout@v2

- name: spack cache
id: spack-cache
uses: actions/cache@v3
with:
key: spack-cache-sandlot-3
path: |
./spack
./spack_sandlot_mirror
./spack_sandlot_env
- name: build korc
run: |
. ./spack/share/spack/setup-env.sh
spack env activate -p -d ./spack_sandlot_env
spack mirror list
#spack install --no-check-signature --add [email protected]
#spack load [email protected]
#spack compiler find
#spack install --no-check-signature --add cmake %[email protected]
#spack load cmake %[email protected]
#spack install --no-check-signature --add hdf5+fortran+mpi %[email protected]
#spack load hdf5+fortran+mpi %[email protected]
spack find -ldf
spack find -l
set -x
which cmake
which gfortran
gfortran --version
set +x
./build.sh
spack env deactivate

0 comments on commit fee4722

Please sign in to comment.