build_ci.sh: do a test build with HAL_LOGGING_ENABLED false

This commit is contained in:
Peter Barker 2024-03-05 17:09:12 +11:00 committed by Andrew Tridgell
parent bc6d965bbc
commit f88d0a7d54
1 changed files with 7 additions and 0 deletions

View File

@ -466,6 +466,13 @@ for t in $CI_BUILD_TARGET; do
--no-enable-in-turn \
--build-targets=copter \
--build-targets=plane
echo "Checking building with logging disabled works"
echo "define HAL_LOGGING_ENABLED 0" >/tmp/extra.hwdef
time ./waf configure \
--board=CubeOrange \
--extra-hwdef=/tmp/extra.hwdef
time ./waf plane
time ./waf copter
continue
fi