diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 031d626..98141b9 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -9,11 +9,14 @@ on: jobs: build: runs-on: windows-2022 + strategy: + matrix: + toolchain: [v142, v143, clangcl] steps: - uses: actions/checkout@v4 - name: Build run: | - cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE:STRING=Release + cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=Release cmake --build ./build/x64 - name: Publish packaged artifacts uses: actions/upload-artifact@v4