[CI][TPU] Fix docker clean up (#22271)

Signed-off-by: Siyuan Liu <lsiyuan@google.com>
This commit is contained in:
Siyuan Liu
2025-08-05 16:54:56 -07:00
committed by GitHub
parent 59a0b8554b
commit 4b29d2784b
5 changed files with 3 additions and 7 deletions

View File

@@ -4,8 +4,7 @@ set -xu
remove_docker_container() {
docker rm -f tpu-test || true;
docker rm -f vllm-tpu || true;
docker rm -f tpu-test || true;
}
trap remove_docker_container EXIT

View File

@@ -5,7 +5,6 @@ set -xu
remove_docker_container() {
docker rm -f tpu-test || true;
docker rm -f vllm-tpu || true;
}
trap remove_docker_container EXIT