Skip to content

Commit 80b7130

Browse files
committed
Fix mac
1 parent b546e64 commit 80b7130

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/trunk.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -629,11 +629,11 @@ jobs:
629629
model: ["gemma3-4b", "llava"] # llava is probably too big so not covering it here.
630630
with:
631631
secrets-env: EXECUTORCH_HF_TOKEN
632-
runner: macos-14-xlarge
632+
runner: macos-15-xlarge
633633
python-version: '3.11'
634634
submodules: 'recursive'
635635
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
636-
timeout: 900
636+
timeout: 90
637637
script: |
638638
echo "::group::Setup ExecuTorch"
639639
bash .ci/scripts/setup-conda.sh
@@ -643,9 +643,10 @@ jobs:
643643
644644
echo "::group::Setup Huggingface"
645645
${CONDA_RUN} pip install -U "huggingface_hub[cli]" accelerate
646-
${CONDA_RUN} huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN
646+
huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN
647647
OPTIMUM_ET_VERSION=$(cat .ci/docker/ci_commit_pins/optimum-executorch.txt)
648648
${CONDA_RUN} pip install git+https://github.com/huggingface/optimum-executorch.git@${OPTIMUM_ET_VERSION}
649+
${CONDA_RUN} pip list
649650
echo "::endgroup::"
650651
651652
echo "::group::Test ${{ matrix.model }}"

0 commit comments

Comments
 (0)