From 825a3a5e7e59da467844e4f5ae8a19a929c7f6e1 Mon Sep 17 00:00:00 2001 From: Cristian Adam Date: Fri, 15 Jul 2022 13:38:58 +0200 Subject: [PATCH] GitHub Actions: Update MSVC runner to windows-latest Also change to MSVC 2022, which is the only MSVC compiler present on the windows-latest runner. MSVC 2022 is backwards compatible with MSVC 2019 and should work fine with our Qt 6.3.1 MSVC 2019 package. Change-Id: Id9967de33d2fea03f86243f8d54d369095918cfe Reviewed-by: Reviewed-by: Eike Ziller --- .github/workflows/build_cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 6033422b389..e65a45b87a6 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -25,10 +25,10 @@ jobs: matrix: config: - { - name: "Windows MSVC 2019", artifact: "Windows-MSVC", - os: windows-2019, + name: "Windows Latest MSVC", artifact: "Windows-MSVC", + os: windows-latest, cc: "cl", cxx: "cl", - environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat", + environment_script: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat", is_msvc: true } - {