ci-automation: Add NVIDIA instance type only for amd64

The instance type used for the NVIDIA test is amd64-only.
This commit is contained in:
Kai Lueke 2023-06-20 12:29:54 +02:00
parent bde89e3065
commit 2921a7d832

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 \