From c66e38ea4c12651baacd0b9021ef720a5d93a995 Mon Sep 17 00:00:00 2001 From: QiliangCui Date: Thu, 10 Jul 2025 11:21:58 -0700 Subject: [PATCH] [Test] Remove docker build from test. (#20542) Signed-off-by: Qiliang Cui --- .buildkite/scripts/tpu/docker_run_bm.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.buildkite/scripts/tpu/docker_run_bm.sh b/.buildkite/scripts/tpu/docker_run_bm.sh index 715afce5f71ab..8959877a3c052 100755 --- a/.buildkite/scripts/tpu/docker_run_bm.sh +++ b/.buildkite/scripts/tpu/docker_run_bm.sh @@ -22,16 +22,6 @@ trap remove_docker_container EXIT # Remove the container that might not be cleaned up in the previous run. remove_docker_container -# Build docker image. -# TODO: build the image outside the script and share the image with other -# tpu test if building time is too long. -DOCKER_BUILDKIT=1 docker build \ - --build-arg max_jobs=16 \ - --build-arg USE_SCCACHE=1 \ - --build-arg GIT_REPO_CHECK=0 \ - --tag vllm/vllm-tpu-bm \ - --progress plain -f docker/Dockerfile.tpu . - LOG_ROOT=$(mktemp -d) # If mktemp fails, set -e will cause the script to exit. echo "Results will be stored in: $LOG_ROOT"