diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3c2208904e..c53fdb1ce3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -256,7 +256,7 @@ jobs: with: registry: ghcr.io repo: ${{ github.repository_owner }}/kata-deploy-ci - tag: ${{ inputs.tag }}-arm64 + tag: ${{ inputs.tag }}-amd64 commit-hash: ${{ inputs.commit-hash }} pr-number: ${{ inputs.pr-number }} target-branch: ${{ inputs.target-branch }} diff --git a/tests/integration/kubernetes/gha-run.sh b/tests/integration/kubernetes/gha-run.sh index cbdff162e8..6b87e13118 100755 --- a/tests/integration/kubernetes/gha-run.sh +++ b/tests/integration/kubernetes/gha-run.sh @@ -289,7 +289,7 @@ function run_tests() { if [[ "${KATA_HYPERVISOR}" = "dragonball" ]] && [[ "${SNAPSHOTTER}" = "devmapper" ]]; then echo "Skipping tests for ${KATA_HYPERVISOR} using devmapper" else - bash run_kubernetes_tests.sh + bash "${K8STESTS}" fi popd } @@ -547,7 +547,14 @@ function main() { deploy-kata-garm) deploy_kata "garm" ;; deploy-kata-zvsi) deploy_kata "zvsi" ;; deploy-snapshotter) deploy_snapshotter ;; - run-tests) run_tests ;; + run-tests) + K8STESTS=run_kubernetes_tests.sh + run_tests + ;; + run-nv-tests) + K8STESTS=run_kubernetes_nv_tests.sh + run_tests + ;; run-tests-kcli) run_tests "kcli" ;; collect-artifacts) collect_artifacts ;; cleanup) cleanup ;;