cri-containerd: dragonball: Enable, but do not run, the tests

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 <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2023-12-05 09:34:51 +01:00
parent e8b28fed2a
commit 16ad721eda
2 changed files with 7 additions and 1 deletions

View File

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

View File

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