-
Notifications
You must be signed in to change notification settings - Fork 0
241 lines (241 loc) · 7.94 KB
/
spack_docker_images.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
name: Spack images
on:
schedule: [ { cron: "50 23 * * 0" } ] # run every Sunday 23h50
push: { branches: [ main, 'v*' ] }
pull_request:
defaults:
run:
shell: bash
jobs:
step1_base:
runs-on: ubuntu-latest
steps:
- name: "Build and push 1a-base"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/1a-base
image-name: base
cache: ${{ github.event_name != 'schedule' }}
- name: "Build and push 1b-spackbase"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/1b-spackbase
image-name: spackbase
skip-setup: true
step2a_precomp:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step1_base
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/2a-precomp
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-2a
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
step2b_compiler:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step2a_precomp
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/2b-compiler
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-2b
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
step2c_squash:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step2b_compiler
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/2c-squash
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-2c
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
step3a_precomp:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step2c_squash
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/3a-precomp
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-3a
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
step3b_compiler:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step3a_precomp
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/3b-compiler
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-3b
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
step3c_squash:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step3b_compiler
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/3c-squash
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-3c
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
step4_baselibs:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step3c_squash
runs-on: ubuntu-latest
steps:
- name: "Build and push 4a-baselibs"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/4a-baselibs
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-4a
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
- name: "Build and push 4b-squash"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/4b-squash
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-4b
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
skip-setup: true
step5_mpi:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
mpi: ['openmpi','mpich']
needs: step4_baselibs
runs-on: ubuntu-latest
steps:
- name: "Build and push 5a-mpi"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/5a-mpi
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-${{ matrix.mpi }}-5a
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
MPI=${{ matrix.mpi }}
- name: "Build and push spack/5b-squash"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/spack/5b-squash
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-${{ matrix.mpi }}-mini
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
MPI=${{ matrix.mpi }}
skip-setup: true
step6_optlibs:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
mpi: ['openmpi','mpich']
needs: step5_mpi
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/6-optlibs
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-${{ matrix.mpi }}-all
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
MPI=${{ matrix.mpi }}
step7_finalize:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
mpi: ['openmpi','mpich']
level: ['mini', 'all']
needs: step6_optlibs
runs-on: ubuntu-latest
steps:
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@v3
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/7-finalize
image-name: spack/${{ matrix.version }}/${{ matrix.compiler }}/${{ matrix.mpi }}/${{ matrix.level }}
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
MPI=${{ matrix.mpi }}
LIBS=${{ matrix.level }}
- name: Publish tagged
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
run: |
DOCKER_TAG="${{github.ref_name}}"
docker tag ghcr.io/pdidev/spack/${{ matrix.version }}/${{ matrix.compiler }}/${{ matrix.mpi }}/${{ matrix.level }} ghcr.io/pdidev/spack/${{ matrix.version }}/${{ matrix.compiler }}/${{ matrix.mpi }}/${{ matrix.level }}:${{github.ref_name}}
docker push ghcr.io/pdidev/spack/${{ matrix.version }}/${{ matrix.compiler }}/${{ matrix.mpi }}/${{ matrix.level }}:${{github.ref_name}}