forked from chrultrabook/stoney-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
495 lines (426 loc) · 13.8 KB
/
publish-nightly.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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Publish Nightly
on:
push:
branches: [main]
workflow_dispatch:
workflow_call:
inputs:
target:
required: true
type: string
env:
DEBIAN_FRONTEND: 'noninteractive'
TZ: Etc/UTC
jobs:
vanilla:
runs-on: ubuntu-24.04
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 16384
swap-size-mb: 2048
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 7
keep_minimum_runs: 6
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose
run: |
for i in {1..3}; do
echo "Attempt $i"
if /bin/sh build.sh run vanilla; then
break
fi
sleep 10
done
continue-on-error: false
- name: Upload kernel
if: success()
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: kernel
path: packages/kernel.tar.gz
vanilla-fallback:
runs-on: self-hosted
timeout-minutes: 345600
needs: [vanilla]
if: failure()
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 7
keep_minimum_runs: 6
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose on self-hosted
run: /bin/sh build.sh run vanilla
- name: Upload kernel
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: kernel
path: packages/kernel.tar.gz
vanilla-alpine:
runs-on: ubuntu-24.04
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 16384
swap-size-mb: 2048
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 7
keep_minimum_runs: 6
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose
run: |
for i in {1..3}; do
echo "Attempt $i"
if /bin/sh build.sh run vanilla-alpine; then
break
fi
sleep 10
done
continue-on-error: false
- name: Upload kernel
if: success()
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: kernel-alpine
path: packages/kernel-alpine.tar.gz
vanilla-alpine-fallback:
runs-on: self-hosted
timeout-minutes: 345600
needs: [vanilla-alpine]
if: failure()
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 7
keep_minimum_runs: 6
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose on self-hosted
run: /bin/sh build.sh run vanilla-alpine
- name: Upload kernel
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: kernel-alpine
path: packages/kernel-alpine.tar.gz
debian:
runs-on: ubuntu-24.04
needs: [vanilla, vanilla-fallback]
if: |
always() &&
(needs.vanilla.result == 'success' && needs.vanilla-fallback.result == 'skipped') ||
(needs.vanilla.result == 'failure' && needs.vanilla-fallback.result == 'success')
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Create directory
run: |
mkdir packages
- name: Download kernel
uses: actions/download-artifact@v4
with:
name: kernel
path: ./packages
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose
run: |
for i in {1..3}; do
echo "Attempt $i"
if /bin/sh build.sh run debian; then
break
fi
sleep 10
done
continue-on-error: true
- name: Upload debian package
if: success()
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: debian-deb
path: packages/debian/kernel-debian.deb
debian-fallback:
runs-on: self-hosted
needs: [debian]
if: always() &&
(needs.debian.result == 'failure')
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Create directory
run: mkdir packages
- name: Download kernel
uses: actions/download-artifact@v4
with:
name: kernel
path: ./packages
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose on self-hosted
run: /bin/sh build.sh run debian
- name: Upload debian package
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: debian-deb
path: packages/debian/kernel-debian.deb
alpine:
runs-on: ubuntu-24.04
needs: [vanilla-alpine, vanilla-alpine-fallback]
if: |
always() &&
(needs.vanilla-alpine.result == 'success' && needs.vanilla-alpine-fallback.result == 'skipped') ||
(needs.vanilla-alpine.result == 'failure' && needs.vanilla-alpine-fallback.result == 'success')
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Create directory
run: |
mkdir packages
- name: Download kernel
uses: actions/download-artifact@v4
with:
name: kernel-alpine
path: ./packages
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose
run: |
for i in {1..3}; do
echo "Attempt $i"
if /bin/sh build.sh run alpine; then
break
fi
sleep 10
done
continue-on-error: true
- name: Package
if: success()
run: |
sudo apt-get update
sudo apt-get install -y tar lzop
cd packages/alpine
sudo tar --lzop -cvf alpine-apk.tar.lzo keys pkg
sudo chown -R $USER:$USER alpine-apk.tar.lzo
- name: Upload alpine package
if: success()
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: alpine-apk
path: packages/alpine/alpine-apk.tar.lzo
alpine-fallback:
runs-on: self-hosted
needs: [alpine]
if: always() &&
(needs.alpine.result == 'failure')
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git git-lfs
sudo apt-get autopurge -y
sudo apt-get clean
- name: Checkout branch
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ inputs.target }}
fetch-depth: '0'
fetch-tags: 'true'
lfs: 'true'
submodules: 'true'
set-safe-directory: 'true'
- name: Create directory
run: mkdir packages
- name: Download kernel
uses: actions/download-artifact@v4
with:
name: kernel-alpine
path: ./packages
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run docker compose on self-hosted
run: /bin/sh build.sh run alpine
- name: Package
run: |
sudo apt-get update
sudo apt-get install -y tar lzop
cd packages/alpine
sudo tar --lzop -cvf alpine-apk.tar.lzo keys pkg
sudo chown -R $USER:$USER alpine-apk.tar.lzo
- name: Upload alpine package
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: alpine-apk
path: packages/alpine/alpine-apk.tar.lzo
publish:
runs-on: ubuntu-24.04
needs: [debian, debian-fallback, alpine, alpine-fallback]
if: |
always() &&
(needs.debian.result == 'success' && needs.debian-fallback.result == 'skipped' && needs.alpine.result == 'success' && needs.alpine-fallback.result == 'skipped') ||
(needs.debian.result == 'failure' && needs.debian-fallback.result == 'success' && needs.alpine.result == 'failure' && needs.alpine-fallback.result == 'success') ||
(needs.debian.result == 'failure' && needs.debian-fallback.result == 'success' && needs.alpine.result == 'success' && needs.alpine-fallback.result == 'skipped') ||
(needs.debian.result == 'success' && needs.debian-fallback.result == 'skipped' && needs.alpine.result == 'failure' && needs.alpine-fallback.result == 'success')
steps:
- name: Download Debian Deb
uses: actions/download-artifact@v4
with:
name: debian-deb
path: .
- name: Download Alpine Apk
uses: actions/download-artifact@v4
with:
name: alpine-apk
path: .
- name: Download Debian kernel
uses: actions/download-artifact@v4
with:
name: kernel
path: .
- name: Download Alpine kernel
uses: actions/download-artifact@v4
with:
name: kernel-alpine
path: .
- name: Publish release
uses: notpeelz/[email protected]
with:
target: ${{ inputs.target }}
tag: nightly
prerelease: true
strategy: replace
title: "Automatic build"
body: "Automatic build"
files: |
kernel-debian.deb
alpine-apk.tar.lzo
kernel.tar.gz
kernel-alpine.tar.gz