Skip to content

Commit

Permalink
ci: Switch GitHub Action's MSVC build to supported OS version (#644)
Browse files Browse the repository at this point in the history
Windows 2016 has been retired in March 2022, so it's not available
anymore. For further information on that see
<actions/runner-images#4312>.

However, we can test on the newer Windows 2022 image instead.
This also brings Visual Studio 2022.
  • Loading branch information
striezel committed Apr 9, 2022
1 parent cf1e6b1 commit 09c3464
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -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
Expand All @@ -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}}

Expand Down

0 comments on commit 09c3464

Please sign in to comment.