jenkins: cleanup all orphaned git locks (#29296)

pull/29299/head
Adeeb Shihadeh 2 years ago committed by GitHub
parent 7fdd9fc37c
commit c53545621e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      selfdrive/test/setup_device_ci.sh

@ -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 '{}' \;

Loading…
Cancel
Save