From a32ad73dd06f21864f6fc7615f7772a778d9fca9 Mon Sep 17 00:00:00 2001 From: Lorenz Bauer Date: Sat, 17 Sep 2022 15:13:44 +0100 Subject: [PATCH] CI: test on 5.19 --- .semaphore/semaphore.yml | 4 ++-- elf_reader_test.go | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index 3cc26236c..5b821df5f 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -44,7 +44,7 @@ blocks: - name: TMPDIR value: /tmp - name: CI_MAX_KERNEL_VERSION - value: "5.18" + value: "5.19" jobs: - name: Build and Lint commands: @@ -67,6 +67,6 @@ blocks: - name: Run unit tests matrix: - env_var: KERNEL_VERSION - values: ["5.18", "5.15", "5.10", "5.4", "4.19", "4.14", "4.9"] + values: ["5.19", "5.15", "5.10", "5.4", "4.19", "4.14", "4.9"] commands: - gotestsum --raw-command --ignore-non-json-output-lines --junitfile junit.xml -- ./run-tests.sh $KERNEL_VERSION -short -count 1 -json ./... diff --git a/elf_reader_test.go b/elf_reader_test.go index 84adcd8b8..ebc47c360 100644 --- a/elf_reader_test.go +++ b/elf_reader_test.go @@ -742,6 +742,8 @@ func TestLibBPFCompat(t *testing.T) { t.Skip("Skipping due to missing MapExtra field in MapSpec") case "netif_receive_skb.linked3.o": t.Skip("Skipping due to possible bug in upstream CO-RE generation") + case "test_usdt.o", "test_usdt.linked3.o", "test_urandom_usdt.o", "test_urandom_usdt.linked3.o", "test_usdt_multispec.o": + t.Skip("Skipping due to missing support for usdt.bpf.h") } t.Parallel()