summaryrefslogtreecommitdiff
path: root/.github/workflows/windows_build.yml
diff options
context:
space:
mode:
authorcoco875 <59367621+coco875@users.noreply.github.com>2025-08-06 14:01:12 +0200
committerLywx <kiritodev01@gmail.com>2025-08-06 09:16:54 -0600
commit55e33b9f9e4241e8bd185f502fff99cdfd140448 (patch)
treed15d9d70cdce09a11c476f9ec53e1faa50b9fb89 /.github/workflows/windows_build.yml
parent15a742038616343d80c9e48692fa2892724d6389 (diff)
hmm try something else
Diffstat (limited to '.github/workflows/windows_build.yml')
-rw-r--r--.github/workflows/windows_build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml
index 9a436c4..1cbec3c 100644
--- a/.github/workflows/windows_build.yml
+++ b/.github/workflows/windows_build.yml
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
config: [Release, Debug]
- toolchain: [v143, clangcl]
+ toolchain: [torch/cmake/toolchain/windows-msvc.cmake, clangcl]
standalone: [OFF, ON]
generate: [Visual Studio 17 2022, Ninja]
arch: [x64, Win32]
@@ -33,7 +33,7 @@ jobs:
arch: ${{ matrix.arch }}
# only use default toolchain for Ninja
- name: Build Ninja msvc
- if: ${{ matrix.generate == 'Ninja' && matrix.toolchain == 'v143' }}
+ if: ${{ matrix.generate == 'Ninja' && matrix.toolchain == 'torch/cmake/toolchain/windows-msvc.cmake' }}
run: |
cmake -S . -B "build/${{ matrix.arch }}" -G "${{ matrix.generate }}" -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }} -DUSE_STANDALONE=${{ matrix.standalone }}
cmake --build ./build/${{ matrix.arch }} --config ${{ matrix.config }} --parallel 10