gha: Run go test with ubuntu 26.06 - #5201
Draft
sayboras wants to merge 3 commits into
Draft
Conversation
sayboras
force-pushed
the
pr/tammach/ubuntu-26.06
branch
from
June 30, 2026 06:55
bba2a4f to
6f753ce
Compare
TestVerifyTetragonPrograms loaded the BPF objects without the BTF cache the agent initializes at load time, so bpf.HasKfunc() always returned false. That left CONFIG_ITER_NUM disabled, pushing generic_kprobe_filter_arg past the 1M-instruction verifier limit, and silently skipped the uprobe objects. Init the BTF cache and set CONFIG_ITER_NUM the way the production loader does, so the test verifies the same program variant production loads. Signed-off-by: Tam Mach <tam.mach@cilium.io>
Only generic_kprobe_filter_arg had its cel_expr references resolved, so once the uprobe objects are verified generic_uprobe_filter_arg failed with unsatisfied program references. Rewrite any program that references a cel_expr function, matching how the agent resolves them at load time. Signed-off-by: Tam Mach <tam.mach@cilium.io>
Relates: #5194 Signed-off-by: Tam Mach <tam.mach@cilium.io>
sayboras
force-pushed
the
pr/tammach/ubuntu-26.06
branch
from
June 30, 2026 07:46
6f753ce to
2dcf45f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes: #5194