mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-02 05:58:30 -04:00
travis: added F7 and H7 boards to travis builds
ensure these two build types don't get broken
This commit is contained in:
parent
d48eab893a
commit
f30f7ca395
@ -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
|
||||
|
@ -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…
Reference in New Issue
Block a user