We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c75c94 commit 102b63cCopy full SHA for 102b63c
.github/workflows/crio.yml
@@ -88,9 +88,15 @@ jobs:
88
set -euox pipefail
89
90
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')
+ # TODO: check why these tests fail on that combination
+ if [[ "${{matrix.oci-runtime}}" == "crun" ]]; then
+ SKIP=rshared
94
+
95
+ if [[ "${{matrix.monitor}}" == "conmon-rs" ]]; then
96
+ SKIP="$SKIP|SupplementalGroups|AppArmor|RunAsUser"
97
+ fi
98
99
+ ARGS=(--ginkgo.skip "$SKIP")
100
fi
101
102
set +o errexit
0 commit comments