-
Notifications
You must be signed in to change notification settings - Fork 2
77 lines (61 loc) · 2.08 KB
/
spack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: spack
#on: [ push, workflow_dispatch ]
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-1
- 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 add [email protected]
spack install --no-cache
spack load [email protected]
spack compiler find
spack add hdf5+fortran+mpi %[email protected]
spack install --no-cache
spack load hdf5+fortran+mpi %[email protected]
spack mirror create -d ~/mirror --all
spack mirror add nacho ~/mirror
spack config add "config:install_tree:padded_length:128"
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
- name: build korc
run: |
. ./spack/share/spack/setup-env.sh
spack env activate -p -d ./
spack mirror add nacho ~/mirror
spack mirror remove spack-public
spack mirror list
spack add
spack install
spack find
set -x
which cmake
which gfortran
gfortran --version
set +x
spack env deactivate