forked from cilium/ebpf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 cilium#1460 Signed-off-by: Lorenz Bauer <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -153,7 +155,7 @@ jobs: | |
- run: go install gotest.tools/[email protected] | ||
|
||
- name: Test | ||
run: gotestsum --ignore-non-json-output-lines --junitfile junit.xml -- -exec sudo -short -count 1 -json ./... | ||
run: gotestsum --ignore-non-json-output-lines --junitfile junit.xml -- -exec 'sudo -E' -short -count 1 -json ./... | ||
|
||
- name: Benchmark | ||
run: go test -exec sudo -short -run '^$' -bench . -benchtime=1x ./... | ||
|
This file contains 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