From 7afe21a425e222cdf6e649aaaa414a16448c19f7 Mon Sep 17 00:00:00 2001 From: coco875 <59367621+coco875@users.noreply.github.com> Date: Wed, 6 Aug 2025 00:10:54 +0200 Subject: [PATCH] try two generator --- .github/workflows/windows_build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index a02711f..f8c9455 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -13,11 +13,12 @@ jobs: matrix: config: [Release, Debug] toolchain: [v143, clangcl] + generate: [Visual Studio 17 2022, Ninja] steps: - uses: actions/checkout@v4 - name: Build run: | - cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }} + cmake -S . -B "build/x64" -G ${{ matrix.generate }} -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }} cmake --build ./build/x64 - name: Publish packaged artifacts if: ${{ matrix.config == 'Release' }}