-
Notifications
You must be signed in to change notification settings - Fork 23
248 lines (246 loc) · 6.44 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
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
base_image: ubuntu:22.04
base_image_gpu: nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04
secrets: inherit
python-minimal:
needs: [base]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-minimal
context: python-minimal
base_image: base
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
python-datascience:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-datascience
context: python-datascience
base_image: python-minimal
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
python-pytorch:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-pytorch
context: python-pytorch
base_image: python-minimal
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
python-tensorflow:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: python-tensorflow
context: python-tensorflow
base_image: python-minimal
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
r-minimal:
needs: [base]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: r-minimal
context: r-minimal
base_image: base
r_version_1: 4.4.1
r_version_2: 4.3.3
secrets: inherit
r-datascience:
needs: [r-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: r-datascience
context: r-datascience
base_image: r-minimal
r_version_1: 4.4.1
r_version_2: 4.3.3
secrets: inherit
jupyter-python:
needs: [python-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-python
context: jupyter
base_image: python-datascience
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
vscode-python:
needs: [python-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-python
context: vscode
base_image: python-datascience
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
pyspark:
needs: [python-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: pyspark
context: spark
base_image: python-minimal
python_version_1: 3.12.4
python_version_2: 3.11.9
spark_version: 3.5.2
build_gpu: false
secrets: inherit
jupyter-pyspark:
needs: [pyspark]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-pyspark
context: jupyter
base_image: pyspark
python_version_1: 3.12.4
python_version_2: 3.11.9
spark_version: 3.5.2
build_gpu: false
secrets: inherit
vscode-pyspark:
needs: [pyspark]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-pyspark
context: vscode
base_image: pyspark
python_version_1: 3.12.4
python_version_2: 3.11.9
spark_version: 3.5.2
build_gpu: false
secrets: inherit
jupyter-pytorch:
needs: [python-pytorch]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-pytorch
context: jupyter
base_image: python-pytorch
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
vscode-pytorch:
needs: [python-pytorch]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-pytorch
context: vscode
base_image: python-pytorch
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
jupyter-tensorflow:
needs: [python-tensorflow]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-tensorflow
context: jupyter
base_image: python-tensorflow
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
vscode-tensorflow:
needs: [python-tensorflow]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-tensorflow
context: vscode
base_image: python-tensorflow
python_version_1: 3.12.4
python_version_2: 3.11.9
secrets: inherit
rstudio:
needs: [r-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: rstudio
context: rstudio
base_image: r-datascience
r_version_1: 4.4.1
r_version_2: 4.3.3
secrets: inherit
sparkr:
needs: [r-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: sparkr
context: spark
base_image: r-minimal
r_version_1: 4.4.1
r_version_2: 4.3.3
spark_version: 3.5.2
build_gpu: false
secrets: inherit
rstudio-sparkr:
needs: [sparkr]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: rstudio-sparkr
context: rstudio
base_image: sparkr
r_version_1: 4.4.1
r_version_2: 4.3.3
spark_version: 3.5.2
build_gpu: false
secrets: inherit
jupyter-r:
needs: [r-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: jupyter-r
context: jupyter
base_image: r-datascience
r_version_1: 4.4.1
r_version_2: 4.3.3
build_gpu: false
secrets: inherit
r-python-julia:
needs: [r-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: r-python-julia
context: r-python-julia
base_image: r-minimal
r_version_1: 4.4.1
build_gpu: false
secrets: inherit
vscode-r-python-julia:
needs: [r-python-julia]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-r-python-julia
context: vscode
base_image: r-python-julia
r_version_1: 4.4.1
build_gpu: false
secrets: inherit
vscode-r:
needs: [r-datascience]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: vscode-r
context: vscode
base_image: r-datascience
r_version_1: 4.4.1
r_version_2: 4.3.3
build_gpu: false
secrets: inherit