-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
718 additions
and
642 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/workflows/container.yml → .github/workflows/inert_container.yml
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
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 ] | ||
|
2 changes: 1 addition & 1 deletion
2
.github/workflows/machine.yml → .github/workflows/inert_machine.yml
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
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 ] | ||
|
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
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 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
Oops, something went wrong.