Skip to content

Commit 9774f1e

Browse files
authored
Try to fix CI job for llm preset on macos (#11068)
### Summary Use `-j` instead of `--parallel` fixes the timeout issue ### Test plan See [`Build Presets / apple (llm)`](https://github.com/pytorch/executorch/actions/runs/15192422780/job/42728334646?pr=11068) passing
1 parent c256723 commit 9774f1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-presets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
runner: macos-latest-xlarge
2828
python-version: 3.12
2929
submodules: recursive
30-
timeout: 90
30+
timeout: 900
3131
script: |
3232
set -eux
3333
${CONDA_RUN} ./install_requirements.sh > /dev/null
3434
${CONDA_RUN} cmake --preset ${{ matrix.preset }}
35-
${CONDA_RUN} cmake --build cmake-out --parallel
35+
${CONDA_RUN} cmake --build cmake-out -j16
3636
3737
linux:
3838
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main

0 commit comments

Comments
 (0)