Tools: scripts: build_ci.sh: understand env CI_BUILD_DEBUG

This commit is contained in:
Peter Barker 2019-09-05 07:55:39 +10:00 committed by Peter Barker
parent 15308af230
commit 6352e10811

View File

@ -58,6 +58,9 @@ function run_autotest() {
if [ $NAME == "Rover" ]; then
w="$w --enable-math-check-indexes"
fi
if [ "x$CI_BUILD_DEBUG" != "x" ]; then
w="$w --debug"
fi
Tools/autotest/autotest.py --waf-configure-args="$w" "$BVEHICLE" "$RVEHICLE"
ccache -s && ccache -z
}