Skip to content

Commit 402d1d8

Browse files
committed
ci: exclude vllm_inference from nightly and PR CI runs
vLLM 0.15.1 requires transformers<5 but the 26.03 container ships transformers 5.x. vLLM 0.19.1 supports transformers 5.x but needs torch APIs not yet in the NGC 26.03 build. Exclude vllm_inference from all CI runs until the container catches up. The changed-files filter already excluded it from PR runs; this also excludes it from scheduled (nightly) runs via grep -v on ALL_DIRS. Signed-off-by: svc-bionemo <267129667+svc-bionemo@users.noreply.github.com>
1 parent 748ec4c commit 402d1d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/unit-tests-recipes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
6767
run: |
6868
# Get all recipe and model directories
69-
ALL_DIRS=$(ls -d bionemo-recipes/models/*/ bionemo-recipes/recipes/*/ 2>/dev/null | jq -R -s -c 'split("\n")[:-1] | map(rtrimstr("/"))')
69+
ALL_DIRS=$(ls -d bionemo-recipes/models/*/ bionemo-recipes/recipes/*/ 2>/dev/null | grep -v "vllm_inference" | jq -R -s -c 'split("\n")[:-1] | map(rtrimstr("/"))')
7070
7171
# Helper to check for a PR label
7272
has_label() {

0 commit comments

Comments
 (0)