Skip to content

Commit

Permalink
ci: support msvc 17
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiud committed Aug 3, 2024
1 parent 52dc08f commit 62a6190
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,26 @@ on: [push, pull_request]
jobs:
build:
name: ${{matrix.sys}}-${{matrix.env}}-${{matrix.build_type}}
runs-on: windows-2019
runs-on: ${{matrix.generator}}
strategy:
fail-fast: true
matrix:
build_type: [Release, Debug]
sys: [mingw32, mingw64, msvc-16]
sys: [mingw32, mingw64, msvc-16, msvc-17]
include:
- sys: mingw32
env: i686
runner: windows-2022
- sys: mingw64
env: x86_64
runner: windows-2022
- sys: msvc-16
generator: 'Visual Studio 16 2019'
runner: windows-2019
env: x64
- sys: msvc-17
generator: 'Visual Studio 17 2022'
runner: windows-2022
env: x64

steps:
Expand Down

0 comments on commit 62a6190

Please sign in to comment.