Browse Source

travis: added F7 and H7 boards to travis builds

ensure these two build types don't get broken
master
Andrew Tridgell 6 years ago
parent
commit
f30f7ca395
  1. 2
      .travis.yml
  2. 16
      Tools/scripts/build_ci.sh

2
.travis.yml

@ -59,7 +59,7 @@ matrix: @@ -59,7 +59,7 @@ matrix:
include:
- if: type != cron
compiler: "gcc"
env: CI_BUILD_TARGET="revo-bootloader iofirmware"
env: CI_BUILD_TARGET="revo-bootloader iofirmware stm32f7 stm32h7"
- compiler: "gcc"
env: CI_BUILD_TARGET="revo-mini"
- if: type != cron

16
Tools/scripts/build_ci.sh

@ -93,6 +93,22 @@ for t in $CI_BUILD_TARGET; do @@ -93,6 +93,22 @@ for t in $CI_BUILD_TARGET; do
continue
fi
if [ "$t" == "stm32f7" ]; then
echo "Building mRoX21-777/"
$waf configure --board mRoX21-777
$waf clean
$waf plane
continue
fi
if [ "$t" == "stm32h7" ]; then
echo "Building Pixhawk4Pro"
$waf configure --board Pixhawk4Pro
$waf clean
$waf copter
continue
fi
if [ "$t" == "iofirmware" ]; then
echo "Building iofirmware"
$waf configure --board iomcu

Loading…
Cancel
Save