summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorcoco875 <59367621+coco875@users.noreply.github.com>2025-08-06 13:08:48 +0200
committerLywx <kiritodev01@gmail.com>2025-08-06 09:16:54 -0600
commit599b29dfe0694da3e7933b22fdddc560cbfafba0 (patch)
tree9b4993abb60a93d28f8c2711ff9f104f41e96dbd /.github
parent732f7e751effb1a30abd08f540ce758502ec8043 (diff)
remove clangcl with x86
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows_build.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml
index 68619ab..32d8683 100644
--- a/.github/workflows/windows_build.yml
+++ b/.github/workflows/windows_build.yml
@@ -16,6 +16,9 @@ jobs:
standalone: [OFF, ON]
generate: [Visual Studio 17 2022, Ninja]
arch: [x64, x86]
+ exclude:
+ - toolchain: clangcl
+ arch: x86
steps:
- uses: actions/checkout@v4
- name: Build Visual Studio
@@ -40,7 +43,7 @@ jobs:
cmake -S . -B "build/${{ matrix.arch }}" -G "${{ matrix.generate }}" -DCMAKE_BUILD_TYPE:STRING=${{ matrix.config }} -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_LINKER=lld-link.exe -DUSE_STANDALONE=${{ matrix.standalone }}
cmake --build ./build/${{ matrix.arch }} --config ${{ matrix.config }} --parallel 10
- name: Publish packaged artifacts
- if: ${{ matrix.config == 'Release' }}
+ if: ${{ matrix.config == 'Release' && matrix.generate == 'Visual Studio 17 2022' && matrix.standalone == 'ON' }}
uses: actions/upload-artifact@v4
with:
name: torch-windows-${{ matrix.arch }}-${{ matrix.toolchain }}