Skip to content

Commit 102b63c

Browse files
committed
Fix crun critest
Signed-off-by: Sascha Grunert <[email protected]>
1 parent 3c75c94 commit 102b63c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Diff for: .github/workflows/crio.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,15 @@ jobs:
8888
set -euox pipefail
8989
9090
ARGS=()
91-
if [[ "${{matrix.oci-runtime}}" == "crun" && "${{matrix.monitor}}" == "conmon-rs" ]]; then
92-
# TODO: check why these tests fail on that combination
93-
ARGS=(--ginkgo.skip 'SupplementalGroups|AppArmor|RunAsUser')
91+
# TODO: check why these tests fail on that combination
92+
if [[ "${{matrix.oci-runtime}}" == "crun" ]]; then
93+
SKIP=rshared
94+
95+
if [[ "${{matrix.monitor}}" == "conmon-rs" ]]; then
96+
SKIP="$SKIP|SupplementalGroups|AppArmor|RunAsUser"
97+
fi
98+
99+
ARGS=(--ginkgo.skip "$SKIP")
94100
fi
95101
96102
set +o errexit

0 commit comments

Comments
 (0)