Skip to content

Commit

Permalink
Fix crun critest
Browse files Browse the repository at this point in the history
Signed-off-by: Sascha Grunert <[email protected]>
  • Loading branch information
saschagrunert committed Aug 8, 2024
1 parent 3c75c94 commit 102b63c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/crio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,15 @@ jobs:
set -euox pipefail
ARGS=()
if [[ "${{matrix.oci-runtime}}" == "crun" && "${{matrix.monitor}}" == "conmon-rs" ]]; then
# TODO: check why these tests fail on that combination
ARGS=(--ginkgo.skip 'SupplementalGroups|AppArmor|RunAsUser')
# TODO: check why these tests fail on that combination
if [[ "${{matrix.oci-runtime}}" == "crun" ]]; then
SKIP=rshared
if [[ "${{matrix.monitor}}" == "conmon-rs" ]]; then
SKIP="$SKIP|SupplementalGroups|AppArmor|RunAsUser"
fi
ARGS=(--ginkgo.skip "$SKIP")
fi
set +o errexit
Expand Down

0 comments on commit 102b63c

Please sign in to comment.