jenkins: cleanup all orphaned git locks (#29296)

old-commit-hash: c53545621e865dbee2661442f03f00152c48b92c
This commit is contained in:
Adeeb Shihadeh
2023-08-09 15:14:50 -07:00
committed by GitHub
parent 3ee0786de3
commit 3821ca13eb
+3 -1
View File
@@ -55,7 +55,9 @@ if [ ! -d "$SOURCE_DIR" ]; then
fi
cd $SOURCE_DIR
rm -f .git/index.lock
# cleanup orphaned locks
find .git -type f -name "*.lock" -exec rm {} +
git reset --hard
git fetch --no-tags --no-recurse-submodules -j4 --verbose --depth 1 origin $GIT_COMMIT
find . -maxdepth 1 -not -path './.git' -not -name '.' -not -name '..' -exec rm -rf '{}' \;