Merge pull request #935 from flatcar/kai/nvidia-instance-type-azure-arm64

ci-automation: Add NVIDIA instance type only for amd64
This commit is contained in:
Kai Lüke 2023-06-20 15:25:30 +02:00 committed by GitHub
commit 418f58b1aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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