From 9cbcd71be1c5d33d67d1460019755e7f9954a28c Mon Sep 17 00:00:00 2001 From: Lorenz Bauer Date: Fri, 10 May 2024 10:35:10 +0100 Subject: [PATCH] ci: ignore kprobe_multi test failures on arm64 Seems like the new CI arm64 kernels doesn't have the necessary config to support kprobe_multi. Ignore the error until we figure out what to do. Updates https://github.com/cilium/ebpf/issues/1460 Signed-off-by: Lorenz Bauer --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27d249a79..4e22f0eb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -142,6 +142,8 @@ jobs: runs-on: actuated-arm64-2cpu-8gb needs: build-and-lint timeout-minutes: 15 + env: + EBPF_TEST_IGNORE_KERNEL_VERSION: 'TestKprobeMulti,TestKprobeMultiErrors,TestKprobeMultiCookie,TestKprobeMultiProgramCall,TestHaveBPFLinkKprobeMulti' steps: - uses: actions/checkout@v4