add check for submodules in release builds (#21643)

* add check for submodules in release builds

* this catches it too

* Update release/build_release2.sh
old-commit-hash: 07614d868e
commatwo_master
Adeeb Shihadeh 4 years ago committed by GitHub
parent 2e6d65c17b
commit d27ac56d45
  1. 8
      release/build_release2.sh

@ -55,6 +55,14 @@ scons -j3
python selfdrive/manager/test/test_manager.py
selfdrive/car/tests/test_car_interfaces.py
# Ensure no submodules in release
if test "$(git submodule--helper list | wc -l)" -gt "0"; then
echo "submodules found:"
git submodule--helper list
exit 1
fi
git submodule status
# Cleanup
find . -name '*.a' -delete
find . -name '*.o' -delete

Loading…
Cancel
Save