Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sandlot #18

Merged
merged 21 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

121 changes: 44 additions & 77 deletions .github/workflows/spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,125 +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: create spack cache
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: 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 buildcache keys --install --trust --force
spack install --no-cache cmake %[email protected]
spack install --no-cache hdf5+fortran+mpi %[email protected]

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

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
cat ./KORC/CMakeCache.txt


1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Spack provides an easy way to setup the gfortran compiler toolchain and other de
[KORC] [user@localhost KORC]$ spack install --no-cache --add cmake %[email protected]
[KORC] [user@localhost KORC]$ spack load cmake %[email protected]

[KORC] [user@localhost KORC]$ spack concretize -f
[KORC] [user@localhost KORC]$ spack install --no-cache --add hdf5+fortran+mpi %[email protected]
[KORC] [user@localhost KORC]$ spack load hdf5+fortran+mpi %[email protected]
```
Expand Down
Loading