From 6c397996b850f3f9b3176e0fee79f95152144405 Mon Sep 17 00:00:00 2001 From: halx99 Date: Sat, 16 May 2026 00:00:17 +0800 Subject: [PATCH] Fix Windows CI Closes #2863 --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2dc797397..1fb0834e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,8 +74,8 @@ jobs: - name: Build Cocoa shared library run: cmake --build build-cocoa-shared --parallel - build-windows-vs2022: - name: Windows (VS2022) + build-windows-msvc: + name: Windows (MSVC) runs-on: windows-latest timeout-minutes: 4 env: @@ -84,17 +84,17 @@ jobs: - uses: actions/checkout@v5 - name: Configure Win32 shared x86 library - run: cmake -B build-win32-shared-x86 -G "Visual Studio 17 2022" -A Win32 -D BUILD_SHARED_LIBS=ON + run: cmake -B build-win32-shared-x86 -A Win32 -D BUILD_SHARED_LIBS=ON - name: Build Win32 shared x86 library run: cmake --build build-win32-shared-x86 --parallel - name: Configure Win32 static x64 library - run: cmake -B build-win32-static-x64 -G "Visual Studio 17 2022" -A x64 + run: cmake -B build-win32-static-x64 -A x64 - name: Build Win32 static x64 library run: cmake --build build-win32-static-x64 --parallel - name: Configure Win32 shared x64 library - run: cmake -B build-win32-shared-x64 -G "Visual Studio 17 2022" -A x64 -D BUILD_SHARED_LIBS=ON + run: cmake -B build-win32-shared-x64 -A x64 -D BUILD_SHARED_LIBS=ON - name: Build Win32 shared x64 library run: cmake --build build-win32-shared-x64 --parallel