From f42c24e647f550c54e046fd216f1e64c55318008 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sat, 9 Apr 2022 01:19:28 +0200 Subject: [PATCH] ci: Switch GitHub Action's MSVC build to supported OS version Windows 2016 has been retired in March 2022, so it's not available anymore. For further information on that see . However, we can test on the newer Windows 2022 image instead. This also brings Visual Studio 2022. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f987ffce1..b39adf5643 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,10 +147,6 @@ jobs: fail-fast: false matrix: include: - - toolset: msvc-14.1 - cxxstd: "14,17,latest" - addrmd: 32,64 - os: windows-2016 - toolset: msvc-14.2 cxxstd: "14,17,latest" addrmd: 32,64 @@ -159,6 +155,10 @@ jobs: cxxstd: "11,14,17,2a" addrmd: 64 os: windows-2019 + - toolset: msvc-14.3 + cxxstd: "14,17,latest" + addrmd: 32,64 + os: windows-2022 runs-on: ${{matrix.os}}