forked from cloudflare/ebpf_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
517 lines (416 loc) · 15.3 KB
/
ci.yml
File metadata and controls
517 lines (416 loc) · 15.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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
name: CI
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
build-libbpf:
strategy:
matrix:
arch: &arch-matrix
- name: x86_64
image: &ubuntu-x86_64 ubuntu-24.04
docker_platform: linux/amd64
- name: aarch64
image: ubuntu-24.04-arm
docker_platform: linux/arm64
name: Build libbpf in Docker (${{ matrix.arch.name }})
runs-on: ${{ matrix.arch.image }}
steps:
- uses: &checkout actions/checkout@v4
- name: Build libbpf
run: |
docker buildx build --progress plain --tag libbpf --target libbpf_builder .
id=$(docker create libbpf)
docker cp $id:/build/libbpf.tar.gz libbpf.${{ matrix.arch.name }}.tar.gz
- name: Upload libbpf.tar.gz
uses: actions/upload-artifact@v4
with:
name: libbpf.${{ matrix.arch.name }}.tar.gz
path: libbpf.${{ matrix.arch.name }}.tar.gz
if-no-files-found: error
build-ebpf-exporter-docker:
strategy:
matrix:
arch: *arch-matrix
name: Build ebpf_exporter in Docker (${{ matrix.arch.name }}, built-in libbpf)
runs-on: ${{ matrix.arch.image }}
steps:
- uses: *checkout
with:
fetch-depth: 0 # Fetch with tags to have the build version attached
- name: Build ebpf_exporter and examples
run: |
docker buildx build --progress plain --tag ebpf_exporter .
docker create --name ebpf_exporter ebpf_exporter
- name: Extract ebpf_exporter.${{ matrix.arch.name }}
run: |
docker cp ebpf_exporter:/ebpf_exporter ebpf_exporter
- name: Upload ebpf_exporter
uses: actions/upload-artifact@v4
with:
name: ebpf_exporter.${{ matrix.arch.name }}
path: ebpf_exporter
if-no-files-found: error
- name: Extract examples.${{ matrix.arch.name }}.tar.gz
run: |
docker cp ebpf_exporter:/examples ./
tar -cvzf examples.${{ matrix.arch.name }}.tar.gz -T <(find examples | grep -E "\.(yaml|bpf.o)$")
- name: Upload examples.${{ matrix.arch.name }}.tar.gz
uses: actions/upload-artifact@v4
with:
name: examples.${{ matrix.arch.name }}.tar.gz
path: examples.${{ matrix.arch.name }}.tar.gz
if-no-files-found: error
- name: Extract ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
run: |
tar -cvzf ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz --transform "s,\(.*\),ebpf_exporter-$(git describe --tags)/\1," -T <(echo ebpf_exporter; find examples | grep -E "\.(yaml|bpf.o)$" | sort)
- name: Upload ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
uses: actions/upload-artifact@v4
with:
name: ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
path: ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
if-no-files-found: error
build-ebpf-exporter:
strategy:
matrix:
arch: *arch-matrix
linkage:
- name: static
make_target: build
- name: dynamic
make_target: build-dynamic
libbpf: &libbpf-matrix
- name: system
make_flag: BUILD_LIBBPF=0
ld_library_path: ''
- name: built-in
make_flag: BUILD_LIBBPF=1
ld_library_path: libbpf/dest/usr/lib
name: Build ebpf_exporter (${{ matrix.arch.name }}, ${{ matrix.linkage.name }} linkage, ${{ matrix.libbpf.name }} libbpf)
needs: build-libbpf
runs-on: ${{ matrix.arch.image }}
steps:
- uses: *checkout
- &setup-go
uses: actions/setup-go@v5
with:
go-version: ^1.25
- &download-libbpf
name: Download libbpf.tar.gz
uses: actions/download-artifact@v4
with:
name: libbpf.${{ matrix.arch.name }}.tar.gz
if: matrix.libbpf.name == 'system'
- &install-libbpf
name: Install libbpf as a system one for system libbpf builds
run: sudo tar -C / -xvvf libbpf.${{ matrix.arch.name }}.tar.gz
if: matrix.libbpf.name == 'system'
- &apt-get-update
name: Run apt-get update
run: sudo apt-get update
- &install-libelf-dev
name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- name: Build
run: make -j $(nproc) ${{ matrix.linkage.make_target }} ${{ matrix.libbpf.make_flag }}
- name: Check for nss presence for static linkage
run: if [[ $(objdump -tT ebpf_exporter | grep 'hidden _nss') ]]; then echo "unexpected nss symbols found"; exit 1; fi
if: matrix.linkage.name == 'static'
- name: Check ldd for static linkage
run: ldd --verbose ./ebpf_exporter
if: matrix.linkage.name == 'dynamic'
- name: Check that it runs
run: LD_LIBRARY_PATH=${{ matrix.libbpf.ld_library_path }} ./ebpf_exporter --version
test-ebpf-exporter:
strategy:
matrix:
arch: *arch-matrix
libbpf: *libbpf-matrix
name: Test ebpf_exporter (${{ matrix.arch.name }}, ${{ matrix.libbpf.name }} libbpf)
needs: build-libbpf
runs-on: ${{ matrix.arch.image }}
steps:
- uses: *checkout
- *setup-go
- *apt-get-update
- &install-systemtap-sdt-dev
name: Install systemtap-sdt-dev
run: sudo apt-get install -y systemtap-sdt-dev
- *install-libelf-dev
- *download-libbpf
- *install-libbpf
- name: Update pci.ids
run: |
curl -o /tmp/pci.ids https://raw.githubusercontent.com/pciutils/pciids/master/pci.ids
sudo mv /tmp/pci.ids /usr/share/misc/pci.ids
- name: Test
run: make -j $(nproc) test ${{ matrix.libbpf.make_flag }}
- name: Test privileged
run: make -j $(nproc) test-privileged ${{ matrix.libbpf.make_flag }}
lint-ebpf-exporter:
strategy:
matrix:
arch: *arch-matrix
name: Lint ebpf_exporter (${{ matrix.arch.name }}, built-in libbpf)
runs-on: ${{ matrix.arch.image }}
steps:
- uses: *checkout
- *setup-go
- *apt-get-update
- *install-systemtap-sdt-dev
- *install-libelf-dev
- name: Build libbpf
run: make -j $(nproc) libbpf.a
- name: Check vendored dependencies
run: go mod verify
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
env:
CGO_CFLAGS: "-I${{ github.workspace }}/libbpf/dest/usr/include"
build-examples:
strategy:
matrix:
arch: *arch-matrix
libbpf: *libbpf-matrix
name: Build examples (${{ matrix.arch.name }}, ${{ matrix.libbpf.name }} libbpf)
needs: build-libbpf
runs-on: ${{ matrix.arch.image }}
steps:
- uses: *checkout
- *download-libbpf
- *install-libbpf
- *apt-get-update
- *install-libelf-dev
- name: Install clang
run: sudo apt-get install -y clang
- name: Build benchmark bpf probes
run: make -j $(nproc) -C benchmark build ${{ matrix.libbpf.make_flag }}
- name: Build example bpf probes
run: make -j $(nproc) -C examples build ${{ matrix.libbpf.make_flag }}
build-tracing-demos:
strategy:
matrix:
arch: *arch-matrix
name: Build tracing demos (${{ matrix.arch.name }})
runs-on: ${{ matrix.arch.image }}
steps:
- uses: *checkout
- *setup-go
- *apt-get-update
- *install-systemtap-sdt-dev
- name: Build
run: make -j $(nproc) tracing-demos
- name: Extract tracing-demos.${{ matrix.arch.name }}.tar.gz
run: |
tar -cvzf tracing-demos.${{ matrix.arch.name }}.tar.gz tracing/demos/*/demo
- name: Upload tracing-demos.${{ matrix.arch.name }}.tar.gz
uses: actions/upload-artifact@v4
with:
name: tracing-demos.${{ matrix.arch.name }}.tar.gz
path: tracing-demos.${{ matrix.arch.name }}.tar.gz
if-no-files-found: error
check-configs:
strategy:
matrix:
arch: *arch-matrix
name: Check examples (${{ matrix.arch.name }})
runs-on: ${{ matrix.arch.image }}
needs:
- build-ebpf-exporter-docker
- build-tracing-demos
steps:
- uses: *checkout
- name: Download ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
uses: actions/download-artifact@v4
with:
name: ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
- name: Extract ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
run: tar --strip-components 1 -xzvf ebpf_exporter_with_examples.${{ matrix.arch.name }}.tar.gz
- name: Download tracing-demos.${{ matrix.arch.name }}.tar.gz
uses: actions/download-artifact@v4
with:
name: tracing-demos.${{ matrix.arch.name }}.tar.gz
- name: Extract tracing-demos.${{ matrix.arch.name }}.tar.gz
run: tar -xzvf tracing-demos.${{ matrix.arch.name }}.tar.gz
- name: Print kernel version
run: uname -a
- name: Install dependencies for ceph fs exporter
run: |
sudo apt update
sudo apt install -y ceph-common
# Some programs expect to attach to symbols in modules
- name: Load expected kernel modules
run: |
sudo modprobe xfs
sudo modprobe ceph
- name: Run configuration check
run: make config-check
clang-format:
name: Run clang-format check
runs-on: *ubuntu-x86_64
steps:
- uses: *checkout
- *apt-get-update
- name: Install clang-format
run: sudo apt-get install -y clang-format make
- name: Run clang-format check
run: make clang-format-check
markdown-links:
name: Run markdown-links-check
runs-on: *ubuntu-x86_64
steps:
- uses: *checkout
- name: Run markdown-links-check
run: make markdown-link-check
jsonschema:
name: Run jsonschema checks
runs-on: *ubuntu-x86_64
steps:
- uses: *checkout
- *apt-get-update
- name: Install jsonschema dependencies
run: sudo apt-get install -y python3-jsonschema make
- name: Install yq
run: sudo curl -Lo /usr/bin/yq https://github.com/mikefarah/yq/releases/download/v4.35.2/yq_linux_amd64 && sudo chmod +x /usr/bin/yq
- name: Run jsonschema check
run: make jsonschema
publish-docker-images:
strategy:
matrix:
arch: *arch-matrix
name: Publish Docker images (${{ matrix.arch.name }})
runs-on: ${{ matrix.arch.image }}
permissions:
contents: read
packages: write
steps:
- uses: *checkout
with:
fetch-depth: 0 # Fetch with tags to have the build version attached
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: build
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.arch.docker_platform }}
outputs: type=image,"name=ghcr.io/${{ github.repository }}",push-by-digest=true,name-canonical=true,push=${{ github.event_name != 'pull_request' }}
- name: Export digest
run: |
mkdir -p ${{ runner.temp }}/digests
digest="${{ steps.build.outputs.digest }}"
touch "${{ runner.temp }}/digests/${digest#sha256:}"
- name: Adjust digest
run: |
platform=${{ matrix.arch.docker_platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: docker-digests-${{ env.PLATFORM_PAIR }}
path: ${{ runner.temp }}/digests/*
if-no-files-found: error
retention-days: 1
publish-docker-images-digest:
name: Publish Docker image digest
runs-on: *ubuntu-x86_64
needs:
- publish-docker-images
steps:
- name: Download digests
uses: actions/download-artifact@v4
with:
path: ${{ runner.temp }}/digests
pattern: docker-digests-*
merge-multiple: true
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
- name: Create manifest list and push
working-directory: ${{ runner.temp }}/digests
if: github.event_name != 'pull_request'
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") $(printf 'ghcr.io/${{ github.repository }}@sha256:%s ' *)
- name: Inspect image
if: github.event_name != 'pull_request'
run: |
docker buildx imagetools inspect ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.version }}
release-archive:
name: Release archive
runs-on: ubuntu-24.04
needs:
- build-ebpf-exporter-docker
steps:
- name: Download ebpf_exporter.aarch64
uses: actions/download-artifact@v4
with:
name: ebpf_exporter.aarch64
- name: Rename ebpf_exporter.aarch64
run: mv ebpf_exporter ebpf_exporter.aarch64
- name: Download ebpf_exporter.x86_64
uses: actions/download-artifact@v4
with:
name: ebpf_exporter.x86_64
- name: Rename ebpf_exporter.x86_64
run: mv ebpf_exporter ebpf_exporter.x86_64
- name: Download examples.aarch64.tar.gz
uses: actions/download-artifact@v4
with:
name: examples.aarch64.tar.gz
- name: Download examples.x86_64.tar.gz
uses: actions/download-artifact@v4
with:
name: examples.x86_64.tar.gz
- name: Download ebpf_exporter_with_examples.aarch64.tar.gz
uses: actions/download-artifact@v4
with:
name: ebpf_exporter_with_examples.aarch64.tar.gz
- name: Download ebpf_exporter_with_examples.x86_64.tar.gz
uses: actions/download-artifact@v4
with:
name: ebpf_exporter_with_examples.x86_64.tar.gz
- name: Mark ebpf_exporter binaries as executable
run: chmod +x ebpf_exporter.aarch64 ebpf_exporter.x86_64
- name: Create sha256sums.txt
run: shasum -a 256 * > sha256sums.txt
- name: Create release archive
run: tar -czf release.tar.gz --transform "s,\(.*\),ebpf_exporter-${GITHUB_SHA}/\1," *
- name: Upload release.tar.gz
uses: actions/upload-artifact@v4
with:
name: release.tar.gz
path: release.tar.gz
if-no-files-found: error