-
Notifications
You must be signed in to change notification settings - Fork 1
392 lines (356 loc) · 13.2 KB
/
main.yaml
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
name: abcdesktoptemplatebuilder
on: push
env:
tag: ${{ github.ref_name }}
jobs:
job1_init_minimal:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.setmatrix.outputs.matrix }}
level0: ${{ steps.setmatrix.outputs.level0 }}
level1: ${{ steps.setmatrix.outputs.level1 }}
level2: ${{ steps.setmatrix.outputs.level2 }}
level3: ${{ steps.setmatrix.outputs.level3 }}
nvidia: ${{ steps.setmatrix.outputs.nvidia }}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: Dump docker files
# list dockerfile from json files
id: dumpdockerfiles
run: |
./scripts/list-dockerfile.sh > dockerfiles
cat dockerfiles
- name: create artifact dockerfiles
uses: actions/upload-artifact@v3
with:
name: dockerfiles
path: dockerfiles
- name: Dump template images
# Dump template images from json files
id: dumptemplateimagefiles
run: |
./scripts/list-templateimage.sh > templateimages
cat templateimages
- name: create artifact template image
uses: actions/upload-artifact@v3
with:
name: templateimages
path: templateimages
# create matrix build
- name: Set Dynamic Matrix
id: setmatrix
run: |
echo tag ${{ env.tag }}
# use node to safe load the json file
mininaljson=$(node rules/json2nop.js rules/minimal.json)
echo "::set-output name=matrix::${mininaljson}"
# level0
# use node to safe load the json file
level0json=$(node rules/json2nop.js rules/level0.json)
echo "::set-output name=level0::${level0json}"
# level1
# use node to safe load the json file
level1json=$(node rules/json2nop.js rules/level1.json)
echo "::set-output name=level1::${level1json}"
# level2
# use node to safe load the json file
level2json=$(node rules/json2nop.js rules/level2.json)
echo "::set-output name=level2::${level2json}"
# level3
# use node to safe load the json file
level3json=$(node rules/json2nop.js rules/level3.json)
echo "::set-output name=level3::${level3json}"
# nvidia
# use node to safe load the json file
nvidiajson=$(node rules/json2nop.js rules/nvidia.json)
echo "::set-output name=nvidia::${nvidiajson}"
job2_do_nvidia:
needs: job1_init_minimal
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.job1_init_minimal.outputs.nvidia) }}
steps:
- run: echo Run source ${{ matrix.source }}
- run: echo Run target ${{ matrix.target }}
- run: echo Run dockerfile ${{ matrix.dockerfile }}
- run: echo tag ${{ env.tag }}
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
submodules: recursive
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push ${{ matrix.target }}
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
context: .
platforms: linux/amd64, linux/arm64
build-args: |
BASE_IMAGE=${{ matrix.source }}
push: true
tags: |
abcdesktopio/${{ matrix.target }}:${{ env.tag }}
- name: create md file ${{ matrix.target }}
run: |
node make-docs.js ${{ matrix.source }} ${{ matrix.target }}:${{ env.tag }} ${{ matrix.dockerfile }}
cat ${{ matrix.target }}.md
- name: create artifact md file ${{ matrix.target }}
uses: actions/upload-artifact@v3
with:
name: template.md
path: ${{ matrix.target }}.md
job2_do_minimal:
needs: job1_init_minimal
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.job1_init_minimal.outputs.matrix) }}
steps:
- run: echo Run ${{ matrix.source }}
- run: echo Run ${{ matrix.target }}
- run: echo Run ${{ matrix.dockerfile }}
- run: echo tag ${{ env.tag }}
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
submodules: recursive
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Dump Dockerfile
run: |
echo Dockerfile ${{ matrix.dockerfile }}
cat ${{ matrix.dockerfile }}
- name: Build and push ${{ matrix.target }}
# build-args: minimal does not need TAG=${{ env.tag }}
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
context: .
platforms: linux/amd64, linux/arm64
build-args: |
BASE_IMAGE=${{ matrix.source }}
push: true
tags: |
abcdesktopio/${{ matrix.target }}:${{ env.tag }}
- name: Use Node.js
uses: actions/setup-node@v4
- name: create md file ${{ matrix.target }}
run: |
node make-docs.js ${{ matrix.source }} ${{ matrix.target }}:${{ env.tag }} ${{ matrix.dockerfile }}
cat ${{ matrix.target }}.md
- name: create artifact md file ${{ matrix.target }}
uses: actions/upload-artifact@v3
with:
name: template.md
path: ${{ matrix.target }}.md
job3_do_level0:
needs: [ job2_do_minimal, job1_init_minimal ]
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.job1_init_minimal.outputs.level0) }}
steps:
- run: echo Run source ${{ matrix.source }}
- run: echo Run target ${{ matrix.target }}
- run: echo Run dockerfile ${{ matrix.dockerfile }}
- run: echo tag ${{ env.tag }}
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.ref_name }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push ${{ matrix.target }}
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
context: .
platforms: linux/amd64, linux/arm64
build-args: |
BASE_IMAGE=${{ matrix.source }}
TAG=${{ env.tag }}
push: true
tags: |
abcdesktopio/${{ matrix.target }}:${{ env.tag }}
- name: Use Node.js
uses: actions/setup-node@v4
- name: create md file ${{ matrix.target }}
run: |
node make-docs.js ${{ matrix.source }} ${{ matrix.target }}:${{ env.tag }} ${{ matrix.dockerfile }}
cat ${{ matrix.target }}.md
- name: create artifact md file ${{ matrix.target }}
uses: actions/upload-artifact@v3
with:
name: template.md
path: ${{ matrix.target }}.md
job4_do_level1:
needs: [ job3_do_level0, job1_init_minimal ]
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.job1_init_minimal.outputs.level1) }}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.ref_name }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push ${{ matrix.target }}
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
context: .
platforms: linux/amd64, linux/arm64
build-args: |
BASE_IMAGE=${{ matrix.source }}
TAG=${{ env.tag }}
push: true
tags: |
abcdesktopio/${{ matrix.target }}:${{ env.tag }}
- name: Use Node.js
uses: actions/setup-node@v4
- name: create md file ${{ matrix.target }}
run: |
node make-docs.js ${{ matrix.source }} ${{ matrix.target }}:${{ env.tag }} ${{ matrix.dockerfile }}
cat ${{ matrix.target }}.md
- name: create artifact md file ${{ matrix.target }}
uses: actions/upload-artifact@v3
with:
name: template.md
path: ${{ matrix.target }}.md
job5_do_level2:
needs: [ job4_do_level1, job1_init_minimal ]
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.job1_init_minimal.outputs.level2) }}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.ref_name }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push ${{ matrix.target }}
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
context: .
platforms: linux/amd64
build-args: |
BASE_IMAGE=${{ matrix.source }}
TAG=${{ env.tag }}
push: true
tags: |
abcdesktopio/${{ matrix.target }}:${{ env.tag }}
- name: Use Node.js
uses: actions/setup-node@v4
- name: create md file ${{ matrix.target }}
run: |
node make-docs.js ${{ matrix.source }} ${{ matrix.target }}:${{ env.tag }} ${{ matrix.dockerfile }}
cat ${{ matrix.target }}.md
- name: create artifact md file ${{ matrix.target }}
uses: actions/upload-artifact@v3
with:
name: template.md
path: ${{ matrix.target }}.md
job6_do_level3:
needs: [ job5_do_level2, job1_init_minimal ]
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.job1_init_minimal.outputs.level3) }}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.ref_name }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push ${{ matrix.target }}
uses: docker/build-push-action@v5
with:
file: ${{ matrix.dockerfile }}
context: .
platforms: linux/amd64
build-args: |
BASE_IMAGE=${{ matrix.source }}
TAG=${{ env.tag }}
push: true
tags: |
abcdesktopio/${{ matrix.target }}:${{ env.tag }}
- name: Use Node.js
uses: actions/setup-node@v4
- name: create md file ${{ matrix.target }}
run: |
node make-docs.js ${{ matrix.source }} ${{ matrix.target }}:${{ env.tag }} ${{ matrix.dockerfile }}
cat ${{ matrix.target }}.md
- name: create artifact md file ${{ matrix.target }}
uses: actions/upload-artifact@v3
with:
name: template.md
path: ${{ matrix.target }}.md
if-no-files-found: error # 'error' or 'ignore' are also available, defaults to `warn`
dispatch:
needs: [ job6_do_level3, job1_init_minimal ]
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.TOKEN_DISPATCH }}
repository: abcdesktopio/docs
event-type: dispatch-from-oc.template
client-payload: '{ "repository": "${{ github.repository }}", "run_id": "${{ github.run_id }}", "artifact": "template.md" }'