Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Commit 23c9b36

Browse files
committed
Use Windows 2022 runner images
see actions/runner-images#12045
1 parent 59a8188 commit 23c9b36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
build-windows-x64-release:
16-
runs-on: windows-2019
16+
runs-on: windows-2022
1717
steps:
1818
- uses: actions/checkout@v4
1919
with:
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
mkdir build
2727
cd build
28-
cmake -DCMAKE_BUILD_TYPE=Release .. -G "Visual Studio 16 2019"
28+
cmake -DCMAKE_BUILD_TYPE=Release .. -G "Visual Studio 17 2022"
2929
cmake --build . --config Release
3030
3131
- name: Create a folder for release
@@ -41,7 +41,7 @@ jobs:
4141
path: dist/*
4242

4343
build-windows-x86-release:
44-
runs-on: windows-2019
44+
runs-on: windows-2022
4545
steps:
4646
- uses: actions/checkout@v4
4747
with:
@@ -53,7 +53,7 @@ jobs:
5353
run: |
5454
mkdir build
5555
cd build
56-
cmake -DCMAKE_BUILD_TYPE=Release .. -A Win32 -G "Visual Studio 16 2019"
56+
cmake -DCMAKE_BUILD_TYPE=Release .. -A Win32 -G "Visual Studio 17 2022"
5757
cmake --build . --config Release
5858
5959
- name: Create a folder for release

0 commit comments

Comments
 (0)