Skip to content

Commit

Permalink
check spack version
Browse files Browse the repository at this point in the history
  • Loading branch information
idigs authored Feb 15, 2024
1 parent 096e222 commit 43163de
Showing 1 changed file with 109 additions and 102 deletions.
211 changes: 109 additions & 102 deletions .github/workflows/spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,108 +15,115 @@ jobs:
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
- if: ${{ steps.spack-cache.outputs.cache-hit != 'true' }}
name: create spack cache
- name: spack test drive
run: |
. ./spack/share/spack/setup-env.sh
spack env create -d .
spack env activate -p -d .
spack config add "config:install_tree:padded_length:128"
spack install --no-cache --add [email protected]
spack load [email protected]
spack compiler find
spack install --no-cache --add cmake %[email protected]
spack load cmake %[email protected]
spack install --no-cache --add hdf5+fortran+mpi %[email protected]
spack load hdf5+fortran+mpi %[email protected]
rm -rf ~/mirror
spack mirror create -d ~/mirror --all
spack mirror add nacho ~/mirror
spack gpg create "My Name" "<[email protected]>"
#mkdir ~/private_gpg_backup
#cp ~/spack/opt/spack/gpg/*.gpg ~/private_gpg_backup
#cp ~/spack/opt/spack/gpg/pubring.* ~/mirror
spack buildcache push ~/mirror
spack buildcache keys --install --trust --force
spack bootstrap mirror --binary-packages ~/mirror
#spack bootstrap add --trust local-sources <final-path>/metadata/sources
#spack bootstrap add --trust local-binaries <final-path>/metadata/binaries
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
spack --version
# - name: spack cache
# id: spack-cache
# uses: actions/cache@v3
# with:
# key: spack-cache-sandlot-1
# path: |
# ~/mirror
# ~/spack.lock
#
# - if: ${{ steps.spack-cache.outputs.cache-hit != 'true' }}
# name: create spack cache
# run: |
# . ./spack/share/spack/setup-env.sh
#
# spack env create -d .
# spack env activate -p -d .
#
# spack config add "config:install_tree:padded_length:128"
#
# spack install --no-cache --add [email protected]
# spack load [email protected]
# spack compiler find
#
# spack install --no-cache --add cmake %[email protected]
# spack load cmake %[email protected]
#
# spack install --no-cache --add hdf5+fortran+mpi %[email protected]
# spack load hdf5+fortran+mpi %[email protected]
#
# rm -rf ~/mirror
#
# spack mirror create -d ~/mirror --all
# spack mirror add nacho ~/mirror
#
# spack gpg create "My Name" "<[email protected]>"
#
# #mkdir ~/private_gpg_backup
# #cp ~/spack/opt/spack/gpg/*.gpg ~/private_gpg_backup
# #cp ~/spack/opt/spack/gpg/pubring.* ~/mirror
#
# spack buildcache push ~/mirror
#
# spack buildcache keys --install --trust --force
#
# spack bootstrap mirror --binary-packages ~/mirror
#
# #spack bootstrap add --trust local-sources <final-path>/metadata/sources
# #spack bootstrap add --trust local-binaries <final-path>/metadata/binaries
#
# 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
#

0 comments on commit 43163de

Please sign in to comment.