File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,12 @@ case "$QUANT_NAME" in
104104esac
105105
106106echo " ::group::Export $MODEL_NAME "
107+
108+ if [ -n " $EXTRA_PIP " ]; then
109+ pip install $EXTRA_PIP
110+ fi
111+ pip list
112+
107113MAX_SEQ_LEN_ARG=" "
108114if [ -n " $MAX_SEQ_LEN " ]; then
109115 MAX_SEQ_LEN_ARG=" --max_seq_len $MAX_SEQ_LEN "
Original file line number Diff line number Diff line change @@ -133,10 +133,6 @@ jobs:
133133 huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN
134134 OPTIMUM_ET_VERSION=$(cat .ci/docker/ci_commit_pins/optimum-executorch.txt)
135135 pip install git+https://github.com/huggingface/optimum-executorch.git@${OPTIMUM_ET_VERSION}
136- if [ -n "$EXTRA_PIP" ]; then
137- pip install $EXTRA_PIP
138- fi
139- pip list
140136 echo "::endgroup::"
141137
142138 source .ci/scripts/export_model_cuda_artifact.sh "${{ matrix.model }}" "${{ matrix.quant }}" "${RUNNER_ARTIFACT_DIR}"
You can’t perform that action at this time.
0 commit comments