Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ jobs:

build_windows_vs16:
needs: source
runs-on: windows-2019
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
Expand All @@ -800,6 +800,12 @@ jobs:
- default
- locked
steps:
- name: Install VS 2019
run: choco install visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.VCTools --includeRecommended --includeOptional --passive --locale en-US"
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
with:
vs-version: '[16.0,17.0)'
- name: Install dependencies
shell: cmd
run: |
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ jobs:

build_windows:
needs: source_abi
runs-on: windows-2019
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
Expand All @@ -306,6 +306,12 @@ jobs:
- ${{ needs.source_abi.outputs.abi_version }}
- ${{ needs.source_abi.outputs.alternate_abi_version }}
steps:
- name: Install VS 2019
run: choco install visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.VCTools --includeRecommended --includeOptional --passive --locale en-US"
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
with:
vs-version: '[16.0,17.0)'
- name: Install dependencies
shell: cmd
run: |
Expand Down Expand Up @@ -382,7 +388,7 @@ jobs:
needs:
- source_abi
- build_windows
runs-on: windows-2019
runs-on: windows-2022
strategy:
fail-fast: false
steps:
Expand Down