Skip to content

Commit a35fc5f

Browse files
committed
ci: speed up test of bpf2go
Installing clang-11 takes the majority of time for the bpf2go test. This in turn delays the matrix based tests, lengthening the overall CI run time by a minute or two. Bump the minimum version to 13, which is pre-installed on ubuntu 22.04 runners. This way we don't have to pay the price of installation. Signed-off-by: Lorenz Bauer <lmb@isovalent.com>
1 parent 6e783ed commit a35fc5f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
TMPDIR: /tmp
1010
CI_MAX_KERNEL_VERSION: '6.11'
1111
CI_MAX_EFW_VERSION: '0.20.0'
12-
CI_MIN_CLANG_VERSION: '11'
12+
CI_MIN_CLANG_VERSION: '13'
1313
go_version: '~1.24'
1414
prev_go_version: '~1.23'
1515
CGO_ENABLED: '0'
@@ -48,7 +48,6 @@ jobs:
4848
4949
- name: Test bpf2go
5050
run: |
51-
sudo apt-get install clang-11 llvm-11
5251
go test -v ./cmd/bpf2go
5352
5453
- name: Build examples

0 commit comments

Comments
 (0)