From 9fa0f0f8f998d4ab04342df3a60bd009fc1b8bb2 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Wed, 3 Aug 2022 15:12:15 +0200 Subject: [PATCH] ci-automation/vendor-testing/azure.sh: Fix hyperv generation argument The "v" must be a capital letter. It seems that Azure got picker about parameters it accepts. --- ci-automation/vendor-testing/azure.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci-automation/vendor-testing/azure.sh b/ci-automation/vendor-testing/azure.sh index 4b1ff7ad71..c7bf801a57 100755 --- a/ci-automation/vendor-testing/azure.sh +++ b/ci-automation/vendor-testing/azure.sh @@ -41,9 +41,9 @@ fi run_kola_tests() { local instance_type="${1}"; shift local instance_tapfile="${1}"; shift - local hyperv_gen="v2" - if [ "${instance_type}" = "v1" ]; then - hyperv_gen="v1" + local hyperv_gen="V2" + if [ "${instance_type}" = "V1" ]; then + hyperv_gen="V1" instance_type="${azure_instance_type}" fi @@ -78,7 +78,7 @@ run_kola_tests_on_instances \ "${azure_instance_type}" \ "${CIA_TAPFILE}" \ "${CIA_FIRST_RUN}" \ - ${IS_AMD64:+v1} \ + ${IS_AMD64:+V1} \ '--' \ 'cl.internet' \ '--' \