-
Notifications
You must be signed in to change notification settings - Fork 0
187 lines (187 loc) · 6.62 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
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@main
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@main
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/1b-spackbase
image-name: spackbase
step2_compiler:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step1_base
runs-on: ubuntu-latest
steps:
- name: "Build and push 2a-precomp"
uses: pdidev/test_env/.github/actions/build@main
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 }}
- name: "Build and push 2b-compiler"
uses: pdidev/test_env/.github/actions/build@main
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 }}
- name: "Build and push 2c-squash"
uses: pdidev/test_env/.github/actions/build@main
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 }}
step3_compiler_4_baselibs:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
needs: step2_compiler
runs-on: ubuntu-latest
steps:
- name: "Build and push 3a-precomp"
uses: pdidev/test_env/.github/actions/build@main
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 }}
- name: "Build and push 3b-compiler"
uses: pdidev/test_env/.github/actions/build@main
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 }}
- name: "Build and push 3c-squash"
uses: pdidev/test_env/.github/actions/build@main
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 }}
- name: "Build and push 4a-baselibs"
uses: pdidev/test_env/.github/actions/build@main
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@main
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 }}
step5_mpi_6_optlibs:
strategy:
fail-fast: false
matrix:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
mpi: ['openmpi','mpich']
needs: step3_compiler_4_baselibs
runs-on: ubuntu-latest
steps:
- name: "Build and push 5a-mpi"
uses: pdidev/test_env/.github/actions/build@main
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@main
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/5b-squash
image-name: builder:${{ matrix.version }}-${{ matrix.compiler }}-${{ matrix.mpi }}-mini
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
MPI=${{ matrix.mpi }}
- name: "Build and push 6-optlibs"
uses: pdidev/test_env/.github/actions/build@main
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: step5_mpi_6_optlibs
runs-on: ubuntu-latest
steps:
- name: "Compute tags"
id: info
run: |
if [ 'true' = "${{ github.event_name == 'push' || github.event_name == 'schedule' }}" ]
then
echo "tags=ghcr.io/pdidev/spack/${{ matrix.version }}/${{ matrix.compiler }}/${{ matrix.mpi }}/${{ matrix.level }}:${{github.ref_name}}" >> "${GITHUB_OUTPUT}"
fi
- name: "Build and push"
uses: pdidev/test_env/.github/actions/build@main
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
path: spack/7-finalize
image-name: spack/${{ matrix.version }}/${{ matrix.compiler }}/${{ matrix.mpi }}/${{ matrix.level }}
test: true
build-args: |
VERSION=${{ matrix.version }}
COMPILER=${{ matrix.compiler }}
MPI=${{ matrix.mpi }}
LIBS=${{ matrix.level }}
tags: |
${{ steps.info.outputs.tags }}