Skip to content

Commit

Permalink
Merge pull request #323 from EwoutH/patch-1
Browse files Browse the repository at this point in the history
CI: Use Windows Server 2022 for MSVC 64-bit and MinGW builds
  • Loading branch information
adamjw24 authored Oct 4, 2023
2 parents fa05deb + 1d9936c commit 4e6371b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ jobs:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Windows MSVC 64 Bit",
os: windows-2019,
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat",
generators: "Visual Studio 16 2019",
os: windows-2022,
environment_script: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat",
generators: "Visual Studio 17 2022",
msvc_arch: x64
}
- {
Expand All @@ -30,7 +31,7 @@ jobs:
}
- {
name: "Windows MinGW",
os: windows-2019,
os: windows-2022,
cc: "gcc",
cxx: "g++",
generators: "MinGW Makefiles"
Expand All @@ -56,7 +57,7 @@ jobs:
env:
CMAKE_GENERATOR: "${{ matrix.config.generators }}"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow

- name: Ubuntu/Mac OS X/MinGW build
Expand Down

0 comments on commit 4e6371b

Please sign in to comment.