Skip to content

Commit

Permalink
containerd-shimv2: do not run under opensuse 15
Browse files Browse the repository at this point in the history
containerd cannot be build with seccomp enabled in
Opensuse 15, and trying to remove `seccomp` from `BUILDTAGS`
variable is not working correctly.
Skip tests while investigation continues.
Related: kata-containers#1251

Depends-on: github.com/kata-containers/runtime#2536

Signed-off-by: Salvador Fuentes <[email protected]>
  • Loading branch information
chavafg authored and GabyCT committed Apr 16, 2020
1 parent 465f340 commit 9529951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/containerd/shimv2/shimv2-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
source /etc/os-release || source /usr/lib/os-release
SCRIPT_PATH=$(dirname "$(readlink -f "$0")")

if [ "$ID" == "centos" ] || [ "$ID" == sles ]; then
if [ "$ID" == "centos" ] || [ "$ID" == sles ] || [[ "$ID" =~ ^opensuse.*$ ]]; then
issue="https://github.com/kata-containers/tests/issues/1251"
echo "Skip shimv2 on $ID, see: $issue"
exit
Expand Down

0 comments on commit 9529951

Please sign in to comment.