-
Notifications
You must be signed in to change notification settings - Fork 4
494 lines (425 loc) · 16.3 KB
/
ci.yml
File metadata and controls
494 lines (425 loc) · 16.3 KB
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
name: For each commit and PR
on:
push:
branches:
- "main"
pull_request:
permissions:
contents: read
packages: write
env:
KERNEL_VERSION: 6.18.16
jobs:
# -------------------------------------------------------------------
# Lint — ruff (lint + format) and pyright (type checking)
# -------------------------------------------------------------------
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install lint tools
run: make lint-install
- name: Lint
run: make lint
# -------------------------------------------------------------------
# Fast cache lookup – decides whether the OCI runner is needed
# There are consistent issues with OCI runners not getting scheduled.
# This is the workaround.
# -------------------------------------------------------------------
check-kernel-cache:
runs-on: ubuntu-latest
outputs:
amd64-cache-hit: ${{ steps.amd64-cache.outputs.cache-hit }}
arm64-cache-hit: ${{ steps.arm64-cache.outputs.cache-hit }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Check amd64 kernel cache
id: amd64-cache
uses: actions/cache/restore@v4
with:
path: |
mkosi.output/kernel/${{ env.KERNEL_VERSION }}/amd64
key: kernel-amd64-${{ env.KERNEL_VERSION }}-${{ hashFiles('kernel.configs/*', 'Dockerfile') }}
lookup-only: true
- name: Check arm64 kernel cache
id: arm64-cache
uses: actions/cache/restore@v4
with:
path: |
mkosi.output/kernel/${{ env.KERNEL_VERSION }}/arm64
key: kernel-arm64-${{ env.KERNEL_VERSION }}-${{ hashFiles('kernel.configs/*', 'Dockerfile') }}
lookup-only: true
# -------------------------------------------------------------------
# Build kernel (vmlinuz + modules) inside Docker
# -------------------------------------------------------------------
build-kernel:
needs: [lint, check-kernel-cache]
# Forks / cache-hit → cheap default runner; mainline cache-miss → fast oracle runner
runs-on: >
${{ github.repository != 'tinkerbell/captain' && matrix.fork_runner
|| needs.check-kernel-cache.outputs[format('{0}-cache-hit', matrix.arch)] == 'true' && matrix.fork_runner
|| fromJSON(matrix.mainline_runner) }}
strategy:
fail-fast: false
matrix:
arch: [amd64, arm64]
include:
- arch: amd64
fork_runner: ubuntu-latest
mainline_runner: '{"group":"Default","labels":["oracle-vm-16cpu-64gb-x86-64"]}'
- arch: arm64
fork_runner: ubuntu-24.04-arm
mainline_runner: '{"group":"Default","labels":["oracle-vm-16cpu-64gb-arm64"]}'
env:
ARCH: ${{ matrix.arch }}
KERNEL_MODE: docker
MKOSI_MODE: skip
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Load shared config
run: cat .github/config.env >> "$GITHUB_ENV"
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Compute Dockerfile hash
id: dockerfile-hash
run: echo "hash=$(sha256sum Dockerfile | awk '{print $1}')" >> "$GITHUB_OUTPUT"
- name: Pull or build builder image
id: builder
run: |
HASH="${{ steps.dockerfile-hash.outputs.hash }}"
REMOTE="ghcr.io/${{ github.repository }}/${{ env.BUILDER_IMAGE }}"
if docker pull "${REMOTE}:${HASH}-${{ matrix.arch }}"; then
docker tag "${REMOTE}:${HASH}-${{ matrix.arch }}" "${{ env.BUILDER_IMAGE }}:${HASH}"
docker tag "${REMOTE}:${HASH}-${{ matrix.arch }}" "${{ env.BUILDER_IMAGE }}"
echo "built=false" >> "$GITHUB_OUTPUT"
else
docker build -t "${{ env.BUILDER_IMAGE }}:${HASH}" -t "${{ env.BUILDER_IMAGE }}" .
echo "built=true" >> "$GITHUB_OUTPUT"
fi
- name: Push builder image to GHCR
if: github.ref == 'refs/heads/main' && steps.builder.outputs.built == 'true'
run: |
HASH="${{ steps.dockerfile-hash.outputs.hash }}"
REMOTE="ghcr.io/${{ github.repository }}/${{ env.BUILDER_IMAGE }}"
docker tag "${{ env.BUILDER_IMAGE }}:${HASH}" "${REMOTE}:${HASH}-${{ matrix.arch }}"
docker push "${REMOTE}:${HASH}-${{ matrix.arch }}"
- name: Compute kernel cache key
id: kernel-cache-key
run: echo "key=kernel-${{ matrix.arch }}-${{ env.KERNEL_VERSION }}-${{ hashFiles('kernel.configs/*', 'Dockerfile') }}" >> "$GITHUB_OUTPUT"
- name: Restore kernel cache
id: kernel-cache
uses: actions/cache/restore@v4
with:
path: |
mkosi.output/kernel/${{ env.KERNEL_VERSION }}/${{ matrix.arch }}
key: ${{ steps.kernel-cache-key.outputs.key }}
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Build kernel
run: ./build.py kernel
- name: Fix output file ownership
run: sudo chown -R "$(id -u):$(id -g)" mkosi.output/
- name: Save kernel cache
if: github.ref == 'refs/heads/main' && steps.kernel-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: |
mkosi.output/kernel/${{ env.KERNEL_VERSION }}/${{ matrix.arch }}
key: ${{ steps.kernel-cache-key.outputs.key }}
- name: Upload kernel artifacts
uses: actions/upload-artifact@v4
with:
name: kernel-${{ matrix.arch }}
path: |
mkosi.output/kernel/${{ env.KERNEL_VERSION }}/${{ matrix.arch }}
retention-days: 1
# -------------------------------------------------------------------
# Download tools (containerd, runc, nerdctl, CNI plugins)
# -------------------------------------------------------------------
download-tools:
needs: [lint]
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
arch: [amd64, arm64]
env:
ARCH: ${{ matrix.arch }}
KERNEL_MODE: skip
MKOSI_MODE: skip
TOOLS_MODE: native
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Restore tools cache
id: tools-cache
uses: actions/cache/restore@v4
with:
path: |
mkosi.output/tools/${{ matrix.arch }}/usr/local/bin
mkosi.output/tools/${{ matrix.arch }}/opt/cni
key: tools-${{ matrix.arch }}-${{ hashFiles('captain/tools.py') }}
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Download tools
run: ./build.py tools
- name: Save tools cache
if: github.ref == 'refs/heads/main' && steps.tools-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: |
mkosi.output/tools/${{ matrix.arch }}/usr/local/bin
mkosi.output/tools/${{ matrix.arch }}/opt/cni
key: tools-${{ matrix.arch }}-${{ hashFiles('captain/tools.py') }}
- name: Upload tools artifacts
uses: actions/upload-artifact@v4
with:
name: tools-${{ matrix.arch }}
path: |
mkosi.output/tools/${{ matrix.arch }}/usr/local/bin
mkosi.output/tools/${{ matrix.arch }}/opt/cni
retention-days: 1
# -------------------------------------------------------------------
# Build initramfs via mkosi (depends on kernel + tools)
# -------------------------------------------------------------------
build-initramfs:
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
needs: [build-kernel, download-tools]
strategy:
fail-fast: false
matrix:
arch: [amd64, arm64]
env:
ARCH: ${{ matrix.arch }}
KERNEL_MODE: skip
MKOSI_MODE: native
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Download kernel artifacts
uses: actions/download-artifact@v4
with:
name: kernel-${{ matrix.arch }}
path: mkosi.output/kernel/${{ env.KERNEL_VERSION }}/${{ matrix.arch }}
- name: Download tools artifacts
uses: actions/download-artifact@v4
with:
name: tools-${{ matrix.arch }}
path: mkosi.output/tools/${{ matrix.arch }}
- name: Restore tool binary permissions
run: |
# GitHub Actions artifact upload/download strips execute permissions.
# Restore +x on all tool binaries so they work inside the initramfs.
chmod +x mkosi.output/tools/${{ matrix.arch }}/usr/local/bin/*
chmod +x mkosi.output/tools/${{ matrix.arch }}/opt/cni/bin/*
- name: Refresh apt cache
run: sudo apt-get update
- name: setup-mkosi
uses: systemd/mkosi@v26
- name: Install bubblewrap
run: |
sudo apt-get update
sudo apt-get install -y bubblewrap
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Build initramfs
run: ./build.py initramfs
- name: Upload initramfs artifacts
uses: actions/upload-artifact@v4
with:
name: initramfs-${{ matrix.arch }}
path: out/
retention-days: 1
# -------------------------------------------------------------------
# Build UEFI-bootable ISO (depends on initramfs)
# -------------------------------------------------------------------
build-iso:
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
needs: [build-initramfs]
strategy:
fail-fast: false
matrix:
arch: [amd64, arm64]
include:
- arch: amd64
output_arch: x86_64
- arch: arm64
output_arch: aarch64
env:
ARCH: ${{ matrix.arch }}
KERNEL_MODE: skip
MKOSI_MODE: skip
ISO_MODE: docker
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Load shared config
run: cat .github/config.env >> "$GITHUB_ENV"
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Compute Dockerfile hash
id: dockerfile-hash
run: echo "hash=$(sha256sum Dockerfile | awk '{print $1}')" >> "$GITHUB_OUTPUT"
- name: Pull or build builder image
id: builder
run: |
HASH="${{ steps.dockerfile-hash.outputs.hash }}"
REMOTE="ghcr.io/${{ github.repository }}/${{ env.BUILDER_IMAGE }}"
if docker pull "${REMOTE}:${HASH}-${{ matrix.arch }}"; then
docker tag "${REMOTE}:${HASH}-${{ matrix.arch }}" "${{ env.BUILDER_IMAGE }}:${HASH}"
docker tag "${REMOTE}:${HASH}-${{ matrix.arch }}" "${{ env.BUILDER_IMAGE }}"
echo "built=false" >> "$GITHUB_OUTPUT"
else
docker build -t "${{ env.BUILDER_IMAGE }}:${HASH}" -t "${{ env.BUILDER_IMAGE }}" .
echo "built=true" >> "$GITHUB_OUTPUT"
fi
- name: Push builder image to GHCR
if: github.ref == 'refs/heads/main' && steps.builder.outputs.built == 'true'
run: |
HASH="${{ steps.dockerfile-hash.outputs.hash }}"
REMOTE="ghcr.io/${{ github.repository }}/${{ env.BUILDER_IMAGE }}"
docker tag "${{ env.BUILDER_IMAGE }}:${HASH}" "${REMOTE}:${HASH}-${{ matrix.arch }}"
docker push "${REMOTE}:${HASH}-${{ matrix.arch }}"
- name: Download kernel artifacts
uses: actions/download-artifact@v4
with:
name: kernel-${{ matrix.arch }}
path: mkosi.output/kernel/${{ env.KERNEL_VERSION }}/${{ matrix.arch }}
- name: Download initramfs artifacts
uses: actions/download-artifact@v4
with:
name: initramfs-${{ matrix.arch }}
path: out
- name: Stage initramfs for ISO build
run: |
mkdir -p "mkosi.output/initramfs/${KERNEL_VERSION}/${{ matrix.arch }}"
cp "out/initramfs-${KERNEL_VERSION}-${{ matrix.output_arch }}" \
"mkosi.output/initramfs/${KERNEL_VERSION}/${{ matrix.arch }}/image.cpio.zst"
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Build ISO
run: ./build.py iso
- name: Upload ISO artifact
uses: actions/upload-artifact@v4
with:
name: iso-${{ matrix.arch }}
path: out/captainos-${{ env.KERNEL_VERSION }}-${{ matrix.output_arch }}.iso
retention-days: 1
# -------------------------------------------------------------------
# Publish per-arch artifacts and compute checksums
# -------------------------------------------------------------------
publish-per-arch:
if: github.ref == 'refs/heads/main'
runs-on: ${{ matrix.target == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
needs: [build-iso]
strategy:
fail-fast: false
matrix:
target: [amd64, arm64]
env:
ARCH: ${{ matrix.target }}
TARGET: ${{ matrix.target }}
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Load shared config
run: cat .github/config.env >> "$GITHUB_ENV"
- name: Download kernel artifacts
uses: actions/download-artifact@v4
with:
name: kernel-${{ matrix.target }}
path: mkosi.output/kernel/${{ env.KERNEL_VERSION }}/${{ matrix.target }}
- name: Download initramfs artifacts
uses: actions/download-artifact@v4
with:
name: initramfs-${{ matrix.target }}
path: out
- name: Download ISO artifact
uses: actions/download-artifact@v4
with:
name: iso-${{ matrix.target }}
path: out
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish artifacts to GHCR
run: ./build.py release publish
# -------------------------------------------------------------------
# Publish combined multi-arch image (reuses per-arch registry blobs)
# -------------------------------------------------------------------
publish-combined:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: [publish-per-arch]
env:
ARCH: amd64
TARGET: combined
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Load shared config
run: cat .github/config.env >> "$GITHUB_ENV"
- name: Download kernel artifacts (amd64)
uses: actions/download-artifact@v4
with:
name: kernel-amd64
path: mkosi.output/kernel/${{ env.KERNEL_VERSION }}/amd64
- name: Download initramfs artifacts (amd64)
uses: actions/download-artifact@v4
with:
name: initramfs-amd64
path: out
- name: Download ISO artifact (amd64)
uses: actions/download-artifact@v4
with:
name: iso-amd64
path: out
- name: Download kernel artifacts (arm64)
uses: actions/download-artifact@v4
with:
name: kernel-arm64
path: mkosi.output/kernel/${{ env.KERNEL_VERSION }}/arm64
- name: Download initramfs artifacts (arm64)
uses: actions/download-artifact@v4
with:
name: initramfs-arm64
path: out
- name: Download ISO artifact (arm64)
uses: actions/download-artifact@v4
with:
name: iso-arm64
path: out
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish combined image to GHCR
run: ./build.py release publish