scripts: Skip cri-containerd in gha-run script

This PR skips the cri-containerd in gha-run script for cloud hypervisor
runtime-rs.

Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
This commit is contained in:
Gabriela Cervantes 2024-02-28 19:30:38 +00:00
parent 4bfb9c30e7
commit 5a498948c8

View File

@ -61,7 +61,11 @@ function run() {
enabling_hypervisor
bash -c ${cri_containerd_dir}/integration-tests.sh
if [[ "${KATA_HYPERVISOR}" = "cloud-hypervisor" ]]; then
echo "Skipping cri-containerd tests for ${KATA_HYPERVISOR}"
else
bash -c ${cri_containerd_dir}/integration-tests.sh
fi
}
function main() {