ci: docker: Also run the smoke test with runc

This will help us to make sure that the failure is actually related to
Kata Containers.

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2023-09-12 16:26:41 +02:00
parent c83f167c59
commit f536ef5ce1

View File

@ -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
}