-
Notifications
You must be signed in to change notification settings - Fork 243
607 lines (476 loc) · 17.8 KB
/
ci.yml
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
name: CI
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
build-libbpf-docker-x86_64:
name: Build libbpf in Docker (x86_64)
runs-on: ubuntu-24.04
steps:
- uses: 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.x86_64.tar.gz
- name: Upload libbpf.tar.gz
uses: actions/upload-artifact@v4
with:
name: libbpf.x86_64.tar.gz
path: libbpf.x86_64.tar.gz
if-no-files-found: error
build-libbpf-docker-aarch64:
name: Build libbpf in Docker (aarch64, emulated)
runs-on: ubuntu-24.04
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: actions/checkout@v4
- name: Build libbpf
run: |
docker buildx build --progress plain --tag libbpf --target libbpf_builder --platform linux/arm64 .
id=$(docker create libbpf)
docker cp $id:/build/libbpf.tar.gz libbpf.aarch64.tar.gz
- name: Upload libbpf.tar.gz
uses: actions/upload-artifact@v4
with:
name: libbpf.aarch64.tar.gz
path: libbpf.aarch64.tar.gz
if-no-files-found: error
build-ebpf-exporter-docker-x86_64:
name: Build ebpf_exporter in Docker (x86_64, built-in libbpf)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
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.x86_64
run: |
docker cp ebpf_exporter:/ebpf_exporter ebpf_exporter
- name: Upload ebpf_exporter
uses: actions/upload-artifact@v4
with:
name: ebpf_exporter.x86_64
path: ebpf_exporter
if-no-files-found: error
- name: Extract examples.x86_64.tar.gz
run: |
docker cp ebpf_exporter:/examples ./
tar -cvzf examples.x86_64.tar.gz -T <(find examples | grep -E "\.(yaml|bpf.o)$")
- name: Upload examples.x86_64.tar.gz
uses: actions/upload-artifact@v4
with:
name: examples.x86_64.tar.gz
path: examples.x86_64.tar.gz
if-no-files-found: error
- name: Extract ebpf_exporter_with_examples.x86_64.tar.gz
run: |
tar -cvzf ebpf_exporter_with_examples.x86_64.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.x86_64.tar.gz
uses: actions/upload-artifact@v4
with:
name: ebpf_exporter_with_examples.x86_64.tar.gz
path: ebpf_exporter_with_examples.x86_64.tar.gz
if-no-files-found: error
build-ebpf-exporter-docker-aarch64:
name: Build ebpf_exporter in Docker (aarch64, emulated, built-in libbpf)
runs-on: ubuntu-24.04
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: actions/checkout@v4
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 --platform linux/arm64 .
docker create --name ebpf_exporter ebpf_exporter
- name: Extract ebpf_exporter.aarch64
run: |
docker cp ebpf_exporter:/ebpf_exporter ebpf_exporter
- name: Upload ebpf_exporter
uses: actions/upload-artifact@v4
with:
name: ebpf_exporter.aarch64
path: ebpf_exporter
if-no-files-found: error
- name: Extract examples.aarch64.tar.gz
run: |
docker cp ebpf_exporter:/examples ./
tar -cvzf examples.aarch64.tar.gz -T <(find examples | grep -E "\.(yaml|bpf.o)$")
- name: Upload examples.aarch64.tar.gz
uses: actions/upload-artifact@v4
with:
name: examples.aarch64.tar.gz
path: examples.aarch64.tar.gz
if-no-files-found: error
- name: Extract ebpf_exporter_with_examples.aarch64.tar.gz
run: |
tar -cvzf ebpf_exporter_with_examples.aarch64.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.aarch64.tar.gz
uses: actions/upload-artifact@v4
with:
name: ebpf_exporter_with_examples.aarch64.tar.gz
path: ebpf_exporter_with_examples.aarch64.tar.gz
if-no-files-found: error
build-ebpf-exporter-static-x86_64-system-libbpf:
name: Build ebpf_exporter (x86_64, statically linked, system libbpf)
needs: build-libbpf-docker-x86_64
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
- name: Download libbpf.tar.gz
uses: actions/download-artifact@v4
with:
name: libbpf.x86_64.tar.gz
- name: Install libbpf
run: sudo tar -C / -xvvf libbpf.x86_64.tar.gz
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- name: Build
run: make -j $(nproc) build BUILD_LIBBPF=0
- name: Check static linkage
run: (ldd --verbose ./ebpf_exporter 2>&1 || true) | grep 'not a dynamic executable'
- name: Check for nss presence
run: if [[ $(objdump -tT ebpf_exporter | grep 'hidden _nss') ]]; then echo "unexpected nss symbols found"; exit 1; fi
- name: Check that it runs
run: ./ebpf_exporter --version
build-ebpf-exporter-static-x86_64-built-in-libbpf:
name: Build ebpf_exporter (x86_64, statically linked, built-in libbpf)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- name: Build
run: make -j $(nproc) build
- name: Check static linkage
run: (ldd --verbose ./ebpf_exporter 2>&1 || true) | grep 'not a dynamic executable'
- name: Check for nss presence
run: if [[ $(objdump -tT ebpf_exporter | grep 'hidden _nss') ]]; then echo "unexpected nss symbols found"; exit 1; fi
- name: Check that it runs
run: ./ebpf_exporter --version
build-ebpf-exporter-dynamic-x86_64-system-libbpf:
name: Build ebpf_exporter (x86_64, dynamically linked, system libbpf)
needs: build-libbpf-docker-x86_64
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
- name: Download libbpf.tar.gz
uses: actions/download-artifact@v4
with:
name: libbpf.x86_64.tar.gz
- name: Install libbpf
run: sudo tar -C / -xvvf libbpf.x86_64.tar.gz
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- name: Build
run: make -j $(nproc) build-dynamic BUILD_LIBBPF=0
- name: Check dynamic linkage
run: ldd --verbose ./ebpf_exporter
- name: Check that it runs
run: ./ebpf_exporter --version
build-ebpf-exporter-dynamic-x86_64-built-in-libbpf:
name: Build ebpf_exporter (x86_64, dynamically linked, built-in libbpf)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- name: Build
run: make -j $(nproc) build-dynamic
- name: Check dynamic linkage
run: ldd --verbose ./ebpf_exporter
- name: Check that it runs
run: LD_LIBRARY_PATH=libbpf/dest/usr/lib ./ebpf_exporter --version
test-ebpf-exporter-x86_64-system-libbpf:
name: Test ebpf_exporter (x86_64, system libbpf)
needs: build-libbpf-docker-x86_64
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
- name: Install systemtap-sdt-dev
run: sudo apt-get install -y systemtap-sdt-dev
- name: Download libbpf.tar.gz
uses: actions/download-artifact@v4
with:
name: libbpf.x86_64.tar.gz
- name: Install libbpf
run: sudo tar -C / -xvvf libbpf.x86_64.tar.gz
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- 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 BUILD_LIBBPF=0
- name: Test privileged
run: make -j $(nproc) test-privileged BUILD_LIBBPF=0
test-ebpf-exporter-x86_64-built-in-libbpf:
name: Test ebpf_exporter (x86_64, built-in libbpf)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
- name: Install systemtap-sdt-dev
run: sudo apt-get install -y systemtap-sdt-dev
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- 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
- name: Test privileged
run: make -j $(nproc) test-privileged
lint-ebpf-exporter-x86_64-built-in-libbpf:
name: Lint ebpf_exporter (x86_64, built-in libbpf)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
cache: false # https://github.com/golangci/golangci-lint-action/issues/807
- name: Install systemtap-sdt-dev
run: sudo apt-get install -y systemtap-sdt-dev
- name: Install libelf-dev
run: sudo apt-get install -y 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-x86_64-system-libbpf:
name: Build examples (x86_64, system libbpf)
needs: build-libbpf-docker-x86_64
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Download libbpf.tar.gz
uses: actions/download-artifact@v4
with:
name: libbpf.x86_64.tar.gz
- name: Install libbpf
run: sudo tar -C / -xvvf libbpf.x86_64.tar.gz
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- name: Install clang
run: sudo apt-get install -y clang
- name: Build benchmark bpf probes
run: make -j $(nproc) -C benchmark build BUILD_LIBBPF=0
- name: Build example bpf probes
run: make -j $(nproc) -C examples build BUILD_LIBBPF=0
build-examples-x86_64-built-in-libbpf:
name: Build examples (x86_64, built-in libbpf)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install libelf-dev
run: sudo apt-get install -y libelf-dev
- name: Install clang
run: sudo apt-get install -y clang
- name: Build benchmark bpf probes
run: make -j $(nproc) -C benchmark build
- name: Build example bpf probes
run: make -j $(nproc) -C examples build
build-tracing-demos-x86_64:
name: Build tracing demos (x86_64)
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ^1.23
- name: Install systemtap-sdt-dev
run: sudo apt-get install -y systemtap-sdt-dev
- name: Build
run: make -j $(nproc) tracing-demos
- name: Extract tracing-demos.x86_64.tar.gz
run: |
tar -cvzf tracing-demos.x86_64.tar.gz tracing/demos/*/demo
- name: Upload tracing-demos.x86_64.tar.gz
uses: actions/upload-artifact@v4
with:
name: tracing-demos.x86_64.tar.gz
path: tracing-demos.x86_64.tar.gz
if-no-files-found: error
check-configs-x86_64:
name: Check examples
runs-on: ubuntu-24.04
needs:
- build-ebpf-exporter-docker-x86_64
- build-tracing-demos-x86_64
steps:
- uses: actions/checkout@v4
- 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: Extract ebpf_exporter_with_examples.x86_64.tar.gz
run: tar --strip-components 1 -xzvf ebpf_exporter_with_examples.x86_64.tar.gz
- name: Download tracing-demos.x86_64.tar.gz
uses: actions/download-artifact@v4
with:
name: tracing-demos.x86_64.tar.gz
- name: Extract tracing-demos.x86_64.tar.gz
run: tar -xzvf tracing-demos.x86_64.tar.gz
- name: Print kernel version
run: uname -a
# Some programs expect to attach to symbols in modules
- name: Load expected kernel modules
run: sudo modprobe xfs
- name: Run configuration check
run: make config-check
clang-format:
name: Run clang-format check
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- 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-24.04
steps:
- uses: actions/checkout@v4
- name: Run markdown-links-check
run: make markdown-link-check
jsonschema:
name: Run jsonschema checks
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- 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:
name: Publish Docker images (x86_64, aarch64)
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: actions/checkout@v4
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 }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
provenance: false # https://github.com/docker/build-push-action/issues/755
release-archive:
name: Release archive
runs-on: ubuntu-24.04
needs:
- build-ebpf-exporter-docker-aarch64
- build-ebpf-exporter-docker-x86_64
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