From 22c2e87555a23db6fd8860fff3ef7178dd24aec2 Mon Sep 17 00:00:00 2001 From: Andreas Karatzas Date: Thu, 4 Jun 2026 02:37:44 -0500 Subject: [PATCH] [CI] Reverted gitignore changes (#44497) Signed-off-by: Andreas Karatzas --- .dockerignore | 5 ----- docker/Dockerfile.rocm | 1 - tools/check_repo.sh | 8 -------- 3 files changed, 14 deletions(-) diff --git a/.dockerignore b/.dockerignore index 8396cbf08de..66447272e95 100644 --- a/.dockerignore +++ b/.dockerignore @@ -33,8 +33,3 @@ share/python-wheels/ *.egg MANIFEST rust/target/ -# Not needed in Docker builds -docs/ -.github/ -.pre-commit-config.yaml -format.sh diff --git a/docker/Dockerfile.rocm b/docker/Dockerfile.rocm index 1e39306e39f..545765ea856 100644 --- a/docker/Dockerfile.rocm +++ b/docker/Dockerfile.rocm @@ -98,7 +98,6 @@ RUN if [ "$USE_SCCACHE" = "1" ]; then \ ARG USE_SCCACHE ENV SCCACHE_BUCKET=${USE_SCCACHE:+${SCCACHE_BUCKET_NAME}} ENV SCCACHE_REGION=${USE_SCCACHE:+${SCCACHE_REGION_NAME}} -ENV SCCACHE_ENDPOINT=${USE_SCCACHE:+${SCCACHE_ENDPOINT}} ENV SCCACHE_S3_NO_CREDENTIALS=${USE_SCCACHE:+${SCCACHE_S3_NO_CREDENTIALS}} ENV SCCACHE_IDLE_TIMEOUT=${USE_SCCACHE:+0} diff --git a/tools/check_repo.sh b/tools/check_repo.sh index 60cf057c97c..48eba5bea83 100755 --- a/tools/check_repo.sh +++ b/tools/check_repo.sh @@ -1,14 +1,6 @@ #!/bin/bash # Checks whether the repo is clean and whether tags are available (necessary to correctly produce vllm version at build time) -# Some Docker builds intentionally omit tracked, non-build files from the -# context. Restore only those paths from the mounted .git object database before -# checking cleanliness so release builds still see a coherent worktree. -if [ -f /.dockerenv ]; then - git ls-files -z -- docs .github .pre-commit-config.yaml format.sh \ - | git checkout-index -f -z --stdin -fi - if ! git diff --quiet; then echo "Repo is dirty" >&2