Tools: Enable -Werr for SITL

Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
This commit is contained in:
Ryan Friedman 2023-05-20 22:05:12 -06:00 committed by Andrew Tridgell
parent c382eb192a
commit 7b4d37ac43

View File

@ -365,10 +365,10 @@ for t in $CI_BUILD_TARGET; do
if [ "$t" == "replay" ]; then
echo "Building replay"
$waf configure --board sitl --debug --disable-scripting
$waf configure --board sitl --debug --disable-scripting --Werror
$waf replay
echo "Building AP_DAL standalone test"
$waf configure --board sitl --debug --disable-scripting --no-gcs
$waf configure --board sitl --debug --disable-scripting --no-gcs --Werror
$waf --target tool/AP_DAL_Standalone
$waf clean
continue