Skip to content

Commit

Permalink
CI: test against 6.6
Browse files Browse the repository at this point in the history
Signed-off-by: Lorenz Bauer <[email protected]>
  • Loading branch information
lmb authored and ti-mo committed Oct 30, 2023
1 parent 1df82a8 commit 3b9d47a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
TMPDIR: /tmp
CI_MAX_KERNEL_VERSION: '6.1'
CI_MAX_KERNEL_VERSION: '6.6'
CI_MIN_CLANG_VERSION: '11'
go_version: '~1.21'
prev_go_version: '~1.20'
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
version: ["6.1", "5.15", "5.10", "5.4", "4.19", "4.14", "4.9"]
version: ["6.6", "6.1", "5.15", "5.10", "5.4", "4.19", "4.14", "4.9"]
env:
KERNEL_VERSION: "${{ matrix.version }}"
steps:
Expand Down
23 changes: 21 additions & 2 deletions elf_reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1001,8 +1001,27 @@ func TestLibBPFCompat(t *testing.T) {
t.Skip("Skipping since the test generates dynamic BTF")
case "test_static_linked":
t.Skip("Skipping since .text contains 'subprog' twice")
case "linked_maps", "linked_funcs", "linked_vars", "kprobe_multi",
"test_ksyms_weak", "test_ksyms_module", "test_ksyms":
case "linked_maps",
"linked_funcs",
"linked_vars",
"kprobe_multi",
"test_ksyms_weak",
"test_ksyms_module",
"test_ksyms",
"xdp_metadata2",
"uprobe_multi_usdt",
"test_log_fixup",
"test_global_func_ctx_args",
"test_fill_link_info",
"task_storage_nodeadlock",
"task_kfunc_success",
"pyperf600_iter",
"iters_state_safety",
"iters_num",
"iters_looping",
"freplace_connect_v4_prog",
"freplace_connect4",
"connect4_prog":
t.Skip("Skipping since weak relocations are not supported")
case "bloom_filter_map", "bloom_filter_bench":
t.Skip("Skipping due to missing MapExtra field in MapSpec")
Expand Down

0 comments on commit 3b9d47a

Please sign in to comment.