mirror of https://github.com/ArduPilot/ardupilot
CI: added configure-all.py to travis testing
make sure all hwdef.dat files can be used
This commit is contained in:
parent
e67ccbe13d
commit
9c3e606076
|
@ -61,7 +61,7 @@ matrix:
|
|||
compiler: "gcc"
|
||||
env: CI_BUILD_TARGET="revo-bootloader iofirmware stm32f7 stm32h7"
|
||||
- compiler: "gcc"
|
||||
env: CI_BUILD_TARGET="revo-mini"
|
||||
env: CI_BUILD_TARGET="revo-mini configure-all"
|
||||
- if: type != cron
|
||||
compiler: "gcc"
|
||||
env: CI_BUILD_TARGET="sitltest-copter"
|
||||
|
|
|
@ -117,6 +117,12 @@ for t in $CI_BUILD_TARGET; do
|
|||
continue
|
||||
fi
|
||||
|
||||
if [ "$t" == "configure-all" ]; then
|
||||
echo "Checking configure of all boards"
|
||||
./Tools/scripts/configure_all.py
|
||||
continue
|
||||
fi
|
||||
|
||||
if [[ -n ${waf_supported_boards[$t]} && -z ${CI_CRON_JOB+1} ]]; then
|
||||
echo "Starting waf build for board ${t}..."
|
||||
$waf configure --board "$t" \
|
||||
|
|
Loading…
Reference in New Issue