jenkins: fix unsafe checkout when changing submodules (#32635)

do it twice
old-commit-hash: 9526334049
097
Adeeb Shihadeh 11 months ago committed by GitHub
parent 608096b5bf
commit 22bfc435a9
  1. 2
      selfdrive/test/setup_device_ci.sh

@ -70,6 +70,7 @@ safe_checkout() {
git checkout $GIT_COMMIT
git clean -xdff
git submodule sync
git submodule foreach --recursive "git reset --hard && git clean -xdff"
git submodule update --init --recursive
git submodule foreach --recursive "git reset --hard && git clean -xdff"
@ -95,6 +96,7 @@ unsafe_checkout() {
git reset --hard $GIT_COMMIT
git clean -df
git submodule sync
git submodule foreach --recursive "git reset --hard && git clean -df"
git submodule update --init --recursive
git submodule foreach --recursive "git reset --hard && git clean -df"

Loading…
Cancel
Save