CI: added configure-all.py to travis testing

make sure all hwdef.dat files can be used
This commit is contained in:
Andrew Tridgell 2019-03-15 09:36:24 +11:00
parent e67ccbe13d
commit 9c3e606076
2 changed files with 7 additions and 1 deletions

View File

@ -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"

View File

@ -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" \