mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-02 14:08:45 -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:
|
include:
|
||||||
- if: type != cron
|
- if: type != cron
|
||||||
compiler: "gcc"
|
compiler: "gcc"
|
||||||
env: CI_BUILD_TARGET="revo-bootloader iofirmware"
|
env: CI_BUILD_TARGET="revo-bootloader iofirmware stm32f7 stm32h7"
|
||||||
- compiler: "gcc"
|
- compiler: "gcc"
|
||||||
env: CI_BUILD_TARGET="revo-mini"
|
env: CI_BUILD_TARGET="revo-mini"
|
||||||
- if: type != cron
|
- if: type != cron
|
||||||
|
@ -93,6 +93,22 @@ for t in $CI_BUILD_TARGET; do
|
|||||||
continue
|
continue
|
||||||
fi
|
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
|
if [ "$t" == "iofirmware" ]; then
|
||||||
echo "Building iofirmware"
|
echo "Building iofirmware"
|
||||||
$waf configure --board iomcu
|
$waf configure --board iomcu
|
||||||
|
Loading…
Reference in New Issue
Block a user