-
Notifications
You must be signed in to change notification settings - Fork 505
399 lines (344 loc) · 12.5 KB
/
go.yml
File metadata and controls
399 lines (344 loc) · 12.5 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
name: Go build
on:
push:
branches:
- main
- release-*
paths-ignore:
- "**.md"
- .github/ISSUE_TEMPLATE/**
- .github/workflows/*.yaml
- .github/workflows/*.yml
# Re-include all workflow files used by this workflow
- "!.github/workflows/go.yml"
- "!.github/workflows/build-image-bundle.yml"
- "!.github/workflows/build-k0s.yml"
- "!.github/workflows/smoketest.yaml"
- .github/CODEOWNERS
- .github/dependabot.yml
- docs/**
- hack/ostests/**
- LICENSE
- mkdocs.yml
- renovate.json
pull_request:
branches:
- main
- release-*
paths-ignore:
- "**.md"
- .github/ISSUE_TEMPLATE/**
- .github/workflows/*.yaml
- .github/workflows/*.yml
# Re-include all workflow files used by this workflow
- "!.github/workflows/go.yml"
- "!.github/workflows/build-image-bundle.yml"
- "!.github/workflows/build-k0s.yml"
- "!.github/workflows/smoketest.yaml"
- .github/CODEOWNERS
- .github/dependabot.yml
- docs/**
- hack/ostests/**
- LICENSE
- mkdocs.yml
- renovate.json
env:
MAKEFLAGS: -j
CURL_OPTS: --proto =https --tlsv1.2 --retry 5 --retry-all-errors --silent --show-error --location --fail
jobs:
prepare:
name: Prepare
runs-on: ubuntu-24.04
outputs:
smoketest-matrix: ${{ steps.generate-smoketest-matrix.outputs.smoketests }}
autopilot-matrix: ${{ steps.generate-autopilot-matrix.outputs.matrix }}
steps:
- name: "Workflow run :: Checkout"
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: "Generate :: Smoke test matrix"
id: generate-smoketest-matrix
run: |
./vars.sh FROM=inttest smoketests | jq --raw-input --raw-output \
'split(" ") | [ .[] | select(startswith("check-")) | .[6:] ] | "smoketests=" + tojson' >>$GITHUB_OUTPUT
- name: "Generate :: Autopilot test matrix"
id: generate-autopilot-matrix
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
k0sSortVersion=$(./vars.sh FROM=. k0s_sort_version)
mkdir -p build/cache/bin
curl $CURL_OPTS --output build/cache/bin/k0s_sort "https://github.com/k0sproject/version/releases/download/$k0sSortVersion/k0s_sort-linux-amd64"
chmod +x build/cache/bin/k0s_sort
export PATH="$(realpath build/cache/bin):$PATH"
set -x
k8sVersion="$(./vars.sh kubernetes_version)"
majorVersion="${k8sVersion%%.*}"
minorVersion=${k8sVersion#$majorVersion.}
minorVersion="${minorVersion%%.*}"
{
printf matrix=
hack/tools/gen-matrix.sh "$majorVersion.$(($minorVersion - 1))" "$majorVersion.$minorVersion"
} >> "$GITHUB_OUTPUT"
build-k0s:
strategy:
matrix:
include:
- target-os: linux
target-arch: amd64
- target-os: linux
target-arch: arm64
- target-os: windows
target-arch: amd64
name: "Build :: k0s :: ${{ matrix.target-os }}-${{ matrix.target-arch }}"
uses: ./.github/workflows/build-k0s.yml
with:
target-os: ${{ matrix.target-os }}
target-arch: ${{ matrix.target-arch }}
build-airgap-image-bundle:
strategy:
fail-fast: false
matrix:
target-arch: [amd64, arm64]
name: "Build :: Airgap image bundle"
needs: [build-k0s]
uses: ./.github/workflows/build-image-bundle.yml
with:
image-bundle-name: airgap
image-bundle-platform: linux-${{ matrix.target-arch }}
build-ipv6-test-image-bundle:
name: "Build :: IPv6 test image bundle"
needs: [build-k0s]
uses: ./.github/workflows/build-image-bundle.yml
with:
image-bundle-name: ipv6-test
image-bundle-platform: linux-amd64
submit-sbom:
name: "Submit :: SBOM"
if: github.ref == 'refs/heads/main'
needs: [build-k0s]
runs-on: ubuntu-24.04
permissions:
id-token: write
contents: write
steps:
- name: Download
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: sbom-linux-amd64
- name: Submit
uses: advanced-security/spdx-dependency-submission-action@169d22427d74f3faf93504e70b03eede8dab272a # v0.2.0
with:
filePath: spdx.json
unittests-k0s:
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-24.04
- runs-on: windows-2022
- runs-on: macos-15
name: "check-unit :: k0s :: ${{ matrix.runs-on }}"
uses: ./.github/workflows/unittests-k0s.yml
with:
runs-on: ${{ matrix.runs-on }}
smoketests:
strategy:
fail-fast: false
matrix:
smoke-suite: ${{ fromJson(needs.prepare.outputs.smoketest-matrix) }}
name: "check-${{ matrix.smoke-suite }} :: amd64"
needs:
- prepare
- build-k0s
- build-airgap-image-bundle
- build-ipv6-test-image-bundle
uses: ./.github/workflows/smoketest.yaml
with:
arch: amd64
name: ${{ matrix.smoke-suite }}
smoketests-linux-arm64:
strategy:
fail-fast: false
matrix:
smoke-suite:
- airgap
- basic
- network-conformance-calico
- network-conformance-kuberouter
name: "check-${{ matrix.smoke-suite }} :: arm64"
needs: [build-k0s, build-airgap-image-bundle]
uses: ./.github/workflows/smoketest.yaml
with:
arch: arm64
name: ${{ matrix.smoke-suite }}
autopilot-tests:
strategy:
fail-fast: false
matrix:
version: ${{fromJson(needs.prepare.outputs.autopilot-matrix)}}
smoke-suite:
- controllerworker
- ha3x3
name: "check-ap-${{ matrix.smoke-suite }} :: ${{ matrix.version }}"
needs: [prepare, build-k0s]
uses: ./.github/workflows/smoketest.yaml
with:
arch: amd64
name: ap-${{ matrix.smoke-suite }}
k0s-reference-version: ${{ matrix.version }}
build-arm:
name: "Build :: k0s :: arm"
if: github.repository == 'k0sproject/k0s'
runs-on:
- self-hosted
- linux
- arm
steps:
# https://github.com/actions/checkout/issues/273#issuecomment-642908752 (see below)
- name: "Pre: Fixup directories"
run: find . -type d -not -perm /u+w -exec chmod u+w '{}' \;
- name: Check out code into the Go module directory
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
fetch-depth: 0 # for `git describe`
persist-credentials: false
- name: Prepare build environment
run: .github/workflows/prepare-build-env.sh
- name: Set up Go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Cache embedded binaries
id: cache-embedded-bins
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
key: "build-k0s-linux-arm-embedded-bins-${{ hashFiles('embedded-bins/**/*') }}"
path: embedded-bins/staging/linux/bin/
- name: Cache Go cache
id: cache-gocache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
key: "build-k0s-linux-arm-gocache-go${{ env.GO_VERSION }}-${{ github.sha }}"
restore-keys: "build-k0s-linux-arm-gocache-go${{ env.GO_VERSION }}-"
path: build/cache/go/build
- name: Prepare Go cache
if: steps.cache-gocache.outputs.cache-hit
run: |
touch -t "$(TZ=UTC+24 date +%Y%m%d%H%M.%S)" build/cache/_cache_sentinel
find build/cache/go/build -type f \( -name '*-a' -o -name '*-d' \) -exec touch -r build/cache/_cache_sentinel {} +
- name: Build
env:
EMBEDDED_BINS_CACHED: "${{ steps.cache-embedded-bins.outputs.cache-hit }}"
run: |
gh --version || echo No gh installed
make .k0sbuild.docker-image.k0s
touch go.sum
if [ "$EMBEDDED_BINS_CACHED" == true ]; then
make --touch .bins.linux.stamp
fi
make --touch codegen
make build
echo "k0s binary size: **$(du -sh k0s | cut -f1)**" >>$GITHUB_STEP_SUMMARY
- name: Upload compiled executable
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: k0s-arm
path: k0s
- name: Unit tests
run: make check-unit
- name: Create airgap image list
run: make airgap-images-linux-arm.txt
- name: Cache airgap image bundle
id: cache-airgap-image-bundle
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
key: airgap-image-bundle-linux-arm-${{ hashFiles('Makefile', 'airgap-images-linux-arm.txt', 'cmd/airgap/*', 'pkg/airgap/*') }}
path: |
airgap-images-linux-arm.txt
airgap-image-bundle-linux-arm.tar
- name: Create airgap image bundle if not cached
if: steps.cache-airgap-image-bundle.outputs.cache-hit != 'true'
run: make airgap-image-bundle-linux-arm.tar
- name: Upload airgap bundle
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: airgap-image-bundle-linux-arm.tar
path: airgap-image-bundle-linux-arm.tar
- name: Trim Go cache
if: steps.cache-gocache.outputs.cache-hit
run: |
find build/cache/go/build -type f \( -name '*-a' -o -name '*-d' \) -not -newer build/cache/_cache_sentinel -delete
# TODO We probably want to separate the smoketest into a separate callable workflow which we can call from the build step
# This way we could actually fully parallelize the build and smoketest steps. Currently we are limited by the fact that
# smoke-test step only start after both arm and armv7 builds have finished.
smoketest-arm:
name: "${{ matrix.test }} :: arm"
if: github.repository == 'k0sproject/k0s'
needs: [build-arm]
strategy:
fail-fast: false
matrix:
test:
- check-basic
- check-calico
- check-airgap
runs-on:
- self-hosted
- linux
- arm
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
fetch-depth: 0 # for `git describe`
persist-credentials: false
- name: Prepare build environment
run: .github/workflows/prepare-build-env.sh
- name: Set up Go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Download compiled binary
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: k0s-arm
- name: k0s sysinfo
run: |
chmod +x k0s
./k0s sysinfo
- name: Download airgap bundle
if: contains(matrix.test, 'airgap')
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: airgap-image-bundle-linux-arm.tar
- name: Run smoketest
run: make -C inttest ${{ matrix.test }}
- name: Collect k0s logs and support bundle
if: failure()
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: smoketest-arm-check-basic-files
path: |
/tmp/*.log
/tmp/support-bundle.tar.gz
# https://github.com/actions/checkout/issues/273#issuecomment-642908752
# Golang mod cache tends to set directories to read-only, which breaks any
# attempts to simply remove those directories. The `make clean-gocache`
# target takes care of this, but the mod cache can't be deleted here,
# since it shall be cached across builds, and caching takes place as a
# post build action. So, as a workaround, ensure that all subdirectories
# are writable.
- name: "Post: Fixup directories"
if: always()
run: find . -type d -not -perm /u+w -exec chmod u+w '{}' \;
- name: "Docker prune"
if: always()
run: docker system prune --force --filter "until=$((24*7))h"
win-wsl-smoketest:
name: "Windows WSL Smoketest"
needs: [build-k0s]
uses: ./.github/workflows/win-wsl.yaml