Skip to content

Commit 59b6c98

Browse files
committed
Fix CI
1 parent 1fa8de0 commit 59b6c98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ jobs:
315315
echo "::endgroup::"
316316
317317
echo "::group::Setup Huggingface"
318-
pip install -U "huggingface_hub[cli]"
318+
pip install -U "huggingface_hub[cli]" accelerate
319319
huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN
320320
OPTIMUM_ET_VERSION=$(cat .ci/docker/ci_commit_pins/optimum-executorch.txt)
321321
pip install git+https://github.com/huggingface/optimum-executorch.git@${OPTIMUM_ET_VERSION}

.github/workflows/trunk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ jobs:
626626
strategy:
627627
fail-fast: false
628628
matrix:
629-
model: ["gemma3-4b"] # llava is probably too big so not covering it here.
629+
model: ["gemma3-4b", "llava"] # llava is probably too big so not covering it here.
630630
with:
631631
secrets-env: EXECUTORCH_HF_TOKEN
632632
runner: macos-14-xlarge
@@ -642,7 +642,7 @@ jobs:
642642
echo "::endgroup::"
643643
644644
echo "::group::Setup Huggingface"
645-
${CONDA_RUN} pip install -U "huggingface_hub[cli]"
645+
${CONDA_RUN} pip install -U "huggingface_hub[cli]" accelerate
646646
${CONDA_RUN} 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}

0 commit comments

Comments
 (0)