Skip to content

Commit 87a78df

Browse files
committed
Remove pull trigger since done testing
1 parent 5d7d54e commit 87a78df

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.ci/scripts/gather_test_models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def model_should_run_on_event(model: str, event: str) -> bool:
9090
We put higher priority and fast models to pull request and rest to push.
9191
"""
9292
if event == "pull_request":
93-
return model in ["mv3", "vit", "phi-4-mini"]
93+
return model in ["mv3", "vit"]
9494
elif event == "push":
9595
# These are super slow. Only run it periodically
9696
return model not in ["dl3", "edsr", "emformer_predict"]

.ci/scripts/test_model.sh

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ test_model() {
107107
"${PYTHON_EXECUTABLE}" -m examples.models.llama.export_llama --model "${MODEL_NAME}" -c examples/models/llama/params/demo_rand_params.pth -p examples/models/phi-4-mini/config.json
108108
run_portable_executor_runner
109109
rm "./${MODEL_NAME}.pte"
110+
return
110111
fi
111112

112113
# Export a basic .pte and run the model.

0 commit comments

Comments
 (0)