Skip to content

Commit

Permalink
Ignore exit syscall for runc base profile
Browse files Browse the repository at this point in the history
Recent runs flake because they either see or won't see the exit syscall.
We now ignore it to stabilize the CI.

Signed-off-by: Sascha Grunert <[email protected]>
  • Loading branch information
saschagrunert authored and k8s-ci-robot committed Nov 15, 2024
1 parent a09ed29 commit 8a96eb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/ci/e2e-seccomp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ EOT
k delete seccompprofile $RECORDING
done

echo "Diffing output, while ignoring flaky syscalls 'rt_sigreturn', 'sched_yield' and 'tgkill'"
git diff --exit-code -U0 -I rt_sigreturn -I sched_yield -I tgkill examples
echo "Diffing output, while ignoring flaky syscalls 'rt_sigreturn', 'sched_yield', 'tgkill', and 'exit'"
git diff --exit-code -U0 -I rt_sigreturn -I sched_yield -I tgkill -I exit examples

for RUNTIME in "${RUNTIMES[@]}"; do
echo "Verifying that the profile for runtime $RUNTIME is available in the GitHub container registry"
Expand Down

0 comments on commit 8a96eb8

Please sign in to comment.