From 4653708e823c356dc0ce95ac7bcec5788ce0ede8 Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Tue, 20 Jun 2023 12:29:54 +0200 Subject: [PATCH] ci-automation: Add NVIDIA instance type only for amd64 The instance type used for the NVIDIA test is amd64-only. --- ci-automation/vendor-testing/azure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-automation/vendor-testing/azure.sh b/ci-automation/vendor-testing/azure.sh index 88509f64ee3..ff036b303ab 100755 --- a/ci-automation/vendor-testing/azure.sh +++ b/ci-automation/vendor-testing/azure.sh @@ -74,9 +74,9 @@ query_kola_tests() { kola list --platform=azure --filter "${@}" } -other_instance_types=("Standard_NC6s_v3") +other_instance_types=() if [[ "${CIA_ARCH}" = 'amd64' ]]; then - other_instance_types+=('V1') + other_instance_types+=('V1' 'Standard_NC6s_v3') fi run_kola_tests_on_instances \