From 16ad721eda22967779521c6f4ed13f498e11a8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 5 Dec 2023 09:34:51 +0100 Subject: [PATCH] cri-containerd: dragonball: Enable, but do not run, the tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will make the life easier for dragonball developers to properly enable the tests once the tests are ready. Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/basic-ci-amd64.yaml | 2 +- tests/integration/cri-containerd/gha-run.sh | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/basic-ci-amd64.yaml b/.github/workflows/basic-ci-amd64.yaml index a4f96c096d..abcbb40e15 100644 --- a/.github/workflows/basic-ci-amd64.yaml +++ b/.github/workflows/basic-ci-amd64.yaml @@ -22,7 +22,7 @@ jobs: fail-fast: false matrix: containerd_version: ['lts', 'active'] - vmm: ['clh', 'qemu', 'stratovirt'] + vmm: ['clh', 'dragonball', 'qemu', 'stratovirt'] runs-on: garm-ubuntu-2204-smaller env: CONTAINERD_VERSION: ${{ matrix.containerd_version }} diff --git a/tests/integration/cri-containerd/gha-run.sh b/tests/integration/cri-containerd/gha-run.sh index 6181deede7..09ffc4fedf 100755 --- a/tests/integration/cri-containerd/gha-run.sh +++ b/tests/integration/cri-containerd/gha-run.sh @@ -60,6 +60,12 @@ function run() { info "Running cri-containerd tests using ${KATA_HYPERVISOR} hypervisor" enabling_hypervisor + + if [ "${KATA_HYPERVISOR}" = "dragonball" ]; then + echo "Skipping test for ${KATA_HYPERVISOR}" + return 0 + fi + bash -c ${cri_containerd_dir}/integration-tests.sh }