Skip to content

Commit a7a19b7

Browse files
committed
Fix Windows CI
1 parent 4152c7c commit a7a19b7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ jobs:
7474
- name: Build Cocoa shared library
7575
run: cmake --build build-cocoa-shared --parallel
7676

77-
build-windows-vs2022:
78-
name: Windows (VS2022)
77+
build-windows-msvc:
78+
name: Windows (MSVC)
7979
runs-on: windows-latest
8080
timeout-minutes: 4
8181
env:
@@ -84,17 +84,17 @@ jobs:
8484
- uses: actions/checkout@v5
8585

8686
- name: Configure Win32 shared x86 library
87-
run: cmake -B build-win32-shared-x86 -G "Visual Studio 17 2022" -A Win32 -D BUILD_SHARED_LIBS=ON
87+
run: cmake -B build-win32-shared-x86 -A Win32 -D BUILD_SHARED_LIBS=ON
8888
- name: Build Win32 shared x86 library
8989
run: cmake --build build-win32-shared-x86 --parallel
9090

9191
- name: Configure Win32 static x64 library
92-
run: cmake -B build-win32-static-x64 -G "Visual Studio 17 2022" -A x64
92+
run: cmake -B build-win32-static-x64 -A x64
9393
- name: Build Win32 static x64 library
9494
run: cmake --build build-win32-static-x64 --parallel
9595

9696
- name: Configure Win32 shared x64 library
97-
run: cmake -B build-win32-shared-x64 -G "Visual Studio 17 2022" -A x64 -D BUILD_SHARED_LIBS=ON
97+
run: cmake -B build-win32-shared-x64 -A x64 -D BUILD_SHARED_LIBS=ON
9898
- name: Build Win32 shared x64 library
9999
run: cmake --build build-win32-shared-x64 --parallel
100100

0 commit comments

Comments
 (0)