Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: test on 5.19 #793

Merged
merged 1 commit into from Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .semaphore/semaphore.yml
Expand Up @@ -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:
Expand All @@ -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 ./...
2 changes: 2 additions & 0 deletions elf_reader_test.go
Expand Up @@ -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()
Expand Down