try two generator

This commit is contained in:
coco875
2025-08-06 09:16:54 -06:00
committed by Lywx
parent 625860eb32
commit 7afe21a425
+2 -1
View File
@@ -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' }}