Skip to content

Commit f347f00

Browse files
committed
wip ∫ MAY 22 2025 12:58:23
1 parent 62190ce commit f347f00

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

.github/workflows/build-presets.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -67,28 +67,23 @@ jobs:
6767
cmake --preset ${{ matrix.preset }}
6868
6969
windows:
70-
uses: pytorch/test-infra/.github/workflows/windows_job.yml@main
70+
uses: pytorch/test-infra/.github/workflows/windows_job.yml@jathu/msvc-clang
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
preset: [pybind]
74+
preset: [llm]
7575
with:
7676
job-name: build
77+
test-infra-ref: jathu/msvc-clang
7778
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
7879
submodules: recursive
7980
timeout: 90
8081
script: |
8182
set -eux
82-
conda init powershell
83-
powershell -Command "& {
84-
\$ErrorActionPreference = 'Stop'
85-
Set-PSDebug -Trace 1
8683
87-
conda create --yes --quiet -n et python=3.12
88-
conda activate et
84+
conda create --yes --quiet -n et python=3.12
85+
conda activate et
8986
90-
python install_requirements.py
91-
cmake --preset ${{ matrix.preset }}
92-
\$numCores = [System.Environment]::GetEnvironmentVariable('NUMBER_OF_PROCESSORS') - 1
93-
cmake --build cmake-out -j \$numCores
94-
}"
87+
./install_requirements.sh > /dev/null
88+
cmake -T ClangCL --preset ${{ matrix.preset }}
89+
cmake --build cmake-out -j10

0 commit comments

Comments
 (0)