From 3ec97e2cc5426fd843c4724a593ec17f331151c5 Mon Sep 17 00:00:00 2001 From: "Kevin H. Luu" Date: Fri, 2 May 2025 18:54:34 -0700 Subject: [PATCH] [release] Add command to clean up Docker containers/images in TPU release machine (#17606) --- .buildkite/release-pipeline.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/release-pipeline.yaml b/.buildkite/release-pipeline.yaml index 03e2267a1b4ea..4cc9c70a6adbd 100644 --- a/.buildkite/release-pipeline.yaml +++ b/.buildkite/release-pipeline.yaml @@ -57,6 +57,7 @@ steps: agents: queue: tpu_queue_postmerge commands: + - "yes | docker system prune -a" - "git fetch --all" - "DOCKER_BUILDKIT=1 docker build --build-arg max_jobs=16 --build-arg USE_SCCACHE=1 --build-arg GIT_REPO_CHECK=1 --tag vllm/vllm-tpu:nightly --tag vllm/vllm-tpu:$BUILDKITE_COMMIT --progress plain -f docker/Dockerfile.tpu ." - "docker push vllm/vllm-tpu:nightly"