From c3ca70669e86485750d8fc1f2fd265c527d910ce Mon Sep 17 00:00:00 2001 From: Michael Kubacki Date: Fri, 1 Apr 2022 12:47:29 -0400 Subject: [PATCH] .azurepipelines: Use windows-2019 VM image REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3890 The YAML file previously specified "windows-latest" which recently moved to VS2022. To continue using VS2019 (at least in the short term), the VM image needs to be explicitly set to "windows-2019". Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Michael Kubacki Reviewed-by: Sean Brogan Reviewed-by: Michael D Kinney --- .azurepipelines/Windows-VS2019.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azurepipelines/Windows-VS2019.yml b/.azurepipelines/Windows-VS2019.yml index 22f2d88c2c..e4bd4b1d22 100644 --- a/.azurepipelines/Windows-VS2019.yml +++ b/.azurepipelines/Windows-VS2019.yml @@ -16,5 +16,5 @@ jobs: - template: templates/pr-gate-build-job.yml parameters: tool_chain_tag: 'VS2019' - vm_image: 'windows-latest' + vm_image: 'windows-2019' arch_list: "IA32,X64"