Browse Source

CI: added configure-all.py to travis testing

make sure all hwdef.dat files can be used
master
Andrew Tridgell 6 years ago
parent
commit
9c3e606076
  1. 2
      .travis.yml
  2. 6
      Tools/scripts/build_ci.sh

2
.travis.yml

@ -61,7 +61,7 @@ matrix: @@ -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"

6
Tools/scripts/build_ci.sh

@ -117,6 +117,12 @@ for t in $CI_BUILD_TARGET; do @@ -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…
Cancel
Save