-
Notifications
You must be signed in to change notification settings - Fork 23
355 lines (353 loc) · 10.8 KB
/
main-workflow.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
name: Build and push Docker images
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * 1'
jobs:
base:
uses: ./.github/workflows/main-workflow-template.yml
with:
image: base
context: base
test: true
base_image: ubuntu:22.04
base_image_gpu: nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04
external_base_image: true
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
python-minimal:
needs: [base]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-minimal
context: python-minimal
test: true
base_image: base
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
python-datascience:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-datascience
context: python-datascience
test: true
base_image: python-minimal
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
python-pytorch:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-pytorch
context: python-pytorch
test: true
base_image: python-minimal
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
python-tensorflow:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-tensorflow
context: python-tensorflow
test: true
base_image: python-minimal
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
r-minimal:
needs: [base]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: r-minimal
context: r-minimal
test: true
base_image: base
r_version_1: 4.4.0
r_version_2: 4.3.3
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
r-datascience:
needs: [r-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: r-datascience
context: r-datascience
test: true
base_image: r-minimal
r_version_1: 4.4.0
r_version_2: 4.3.3
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
jupyter-python:
needs: [python-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-python
context: jupyter
test: true
base_image: python-datascience
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
vscode-python:
needs: [python-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-python
context: vscode
test: true
base_image: python-datascience
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
pyspark:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: pyspark
context: spark
test: true
base_image: python-minimal
python_version_1: 3.12.3
python_version_2: 3.11.9
spark_version: 3.5.1
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
jupyter-pyspark:
needs: [pyspark]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-pyspark
context: jupyter
test: true
base_image: pyspark
python_version_1: 3.12.3
python_version_2: 3.11.9
spark_version: 3.5.1
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
vscode-pyspark:
needs: [pyspark]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-pyspark
context: vscode
test: true
base_image: pyspark
python_version_1: 3.12.3
python_version_2: 3.11.9
spark_version: 3.5.1
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
jupyter-pytorch:
needs: [python-pytorch]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-pytorch
context: jupyter
test: true
base_image: python-pytorch
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
vscode-pytorch:
needs: [python-pytorch]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-pytorch
context: vscode
test: true
base_image: python-pytorch
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
jupyter-tensorflow:
needs: [python-tensorflow]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-tensorflow
context: jupyter
test: true
base_image: python-tensorflow
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
vscode-tensorflow:
needs: [python-tensorflow]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-tensorflow
context: vscode
test: true
base_image: python-tensorflow
python_version_1: 3.12.3
python_version_2: 3.11.9
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
rstudio:
needs: [r-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: rstudio
context: rstudio
test: true
base_image: r-datascience
r_version_1: 4.4.0
r_version_2: 4.3.3
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
sparkr:
needs: [r-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: sparkr
context: spark
test: true
base_image: r-minimal
r_version_1: 4.4.0
r_version_2: 4.3.3
spark_version: 3.5.1
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
rstudio-sparkr:
needs: [sparkr]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: rstudio-sparkr
context: rstudio
test: true
base_image: sparkr
r_version_1: 4.4.0
r_version_2: 4.3.3
spark_version: 3.5.1
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
jupyter-r:
needs: [r-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-r
context: jupyter
test: true
base_image: r-datascience
r_version_1: 4.4.0
r_version_2: 4.3.3
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
r-python-julia:
needs: [r-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: r-python-julia
context: r-python-julia
test: true
base_image: r-minimal
r_version_1: 4.4.0
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
vscode-r-python-julia:
needs: [r-python-julia]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-r-python-julia
context: vscode
test: true
base_image: r-python-julia
r_version_1: 4.4.0
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
vscode-r:
needs: [r-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-r
test: true
context: vscode
base_image: r-datascience
r_version_1: 4.4.0
r_version_2: 4.3.3
branch: ${{ github.ref }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}