From 7d4fcc85620553a617b6109947b6b39405a3a108 Mon Sep 17 00:00:00 2001 From: dougbtv Date: Thu, 4 Dec 2025 11:25:43 -0500 Subject: [PATCH] Applies merge base commit logic to fast-check pipeline See also: https://github.com/vllm-project/ci-infra/pull/230 This is in follow up to that PR. Signed-off-by: dougbtv --- buildkite/test-template-fastcheck.j2 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/buildkite/test-template-fastcheck.j2 b/buildkite/test-template-fastcheck.j2 index 0ea4ebee..9024078e 100644 --- a/buildkite/test-template-fastcheck.j2 +++ b/buildkite/test-template-fastcheck.j2 @@ -26,8 +26,10 @@ steps: --build-arg buildkite_commit=$BUILDKITE_COMMIT --build-arg USE_SCCACHE=1 --build-arg VLLM_DOCKER_BUILD_CONTEXT=1 - --build-arg VLLM_USE_PRECOMPILED={{ vllm_use_precompiled | default("0") }}{% if vllm_use_precompiled is defined and vllm_use_precompiled == "1" %} - --build-arg USE_FLASHINFER_PREBUILT_WHEEL=true{% endif %} + --build-arg VLLM_USE_PRECOMPILED={{ vllm_use_precompiled | default("0") }} + {% if vllm_use_precompiled == "1" %} + --build-arg VLLM_MERGE_BASE_COMMIT={{ vllm_merge_base_commit }} + {% endif %} --tag {{ docker_image }} --target test --progress plain . - "docker push {{ docker_image }}"