Skip to content

Commit

Permalink
pulling in main
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeidler3 committed Mar 13, 2024
2 parents 42d6b78 + afa0820 commit 2fb938f
Show file tree
Hide file tree
Showing 28 changed files with 718 additions and 642 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: container
name: inert_container

on: [ workflow_dispatch ]
#on: [ push, workflow_dispatch ]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: machine
name: inert_machine

on: [ workflow_dispatch ]
#on: [ push, workflow_dispatch ]
Expand Down
138 changes: 138 additions & 0 deletions .github/workflows/inert_spack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
name: spack_mirror
on: [ workflow_dispatch ]

jobs:
job_one:
runs-on: ubuntu-latest
steps:
- name: grab main project
uses: actions/checkout@v4

- name: spack cache
id: spack-cache
uses: actions/cache@v3
with:
key: spack-cache-sandlot-4
path: |
./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
run: |
. ./spack/share/spack/setup-env.sh
spack env create -d ./spack_sandlot_env
spack env activate -p -d ./spack_sandlot_env
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 concretize -f
spack install --no-cache --add hdf5+fortran+mpi %[email protected]
spack load hdf5+fortran+mpi %[email protected]
spack gc -y
rm -rf ./spack_sandlot_mirror
spack mirror create -d ./spack_sandlot_mirror --all
spack mirror add sandlot ./spack_sandlot_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 ./spack_sandlot_mirror
spack buildcache keys --install --trust --force
spack bootstrap mirror --binary-packages ./spack_sandlot_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: spack cache
id: spack-cache
uses: actions/cache@v3
with:
key: spack-cache-sandlot-4
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
ctest --verbose
spack env deactivate
- name: Show Cache
if: failure()
shell: bash
working-directory: ${{runner.workspace}}/KORC
run: |
tree -L 2
pwd
ls -la
cat CMakeCache.txt
123 changes: 51 additions & 72 deletions .github/workflows/spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,113 +5,92 @@ jobs:
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:
path: ~/mirror
key: spack-cache-2
key: spack-cache-sandlot-6
path: |
./spack
~/.spack
- 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
name: spack install
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 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 [email protected]
spack compiler add $(spack location -i [email protected])
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 install --no-cache cmake %[email protected]
spack install --no-cache hdf5+fortran+mpi %[email protected]
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
spack gc -y
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
uses: actions/checkout@v4
with:
repository: spack/spack
path: ./spack
path: './KORC'

- name: spack cache
id: spack-cache
uses: actions/cache@v3
with:
path: ~/mirror
key: spack-cache-2
key: spack-cache-sandlot-6
path: |
./spack
~/.spack
- name: build korc
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 mirror add nacho ~/mirror
spack mirror list
pwd
tree -L 2
spack install --no-check-signature --add [email protected]
spack load [email protected]
spack compiler find
. ./spack/share/spack/setup-env.sh
spack install --no-check-signature --add cmake %[email protected]
spack load cmake %[email protected]
#spack find -ldf
spack compilers
spack install --no-check-signature --add hdf5+fortran+mpi %[email protected]
spack load hdf5+fortran+mpi %[email protected]
spack load [email protected]
spack load cmake %[email protected]
spack load hdf5+fortran+mpi %[email protected]
set -x
which cmake
which gfortran
gfortran --version
set +x
which cmake && cmake --version
which gfortran && gfortran --version
which h5diff && h5diff --version
set -x
cd ./KORC
./build.sh
spack env deactivate
- name: Show Cache
if: failure()
shell: bash
run: |
tree -L 2
pwd
ls -la
cat ./KORC/CMakeCache.txt
Loading

0 comments on commit 2fb938f

Please sign in to comment.