From e5e395139879369ed6fe9023f4f2876bc7bd0069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 12 Sep 2023 16:26:41 +0200 Subject: [PATCH] ci: docker: Also run the smoke test with runc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will help us to make sure that the failure is actually related to Kata Containers. Signed-off-by: Fabiano FidĂȘncio (cherry picked from commit f536ef5ce1ba5a32d7d9727c469e20f3820436f8) --- tests/integration/docker/gha-run.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration/docker/gha-run.sh b/tests/integration/docker/gha-run.sh index fc4f430d38..58a6dceaca 100755 --- a/tests/integration/docker/gha-run.sh +++ b/tests/integration/docker/gha-run.sh @@ -38,6 +38,10 @@ function run() { enabling_hypervisor + info "Running docker with runc" + sudo docker run --rm alpine ping -c 2 www.github.com + + info "Running docker with Kata Containers (${KATA_HYPERVISOR})" sudo docker run --rm --runtime io.containerd.kata.v2 alpine ping -c 2 www.github.com }