Browse Source

travis: added fmuv2 plane build

this tests HAL_MINIMIZE_FEATURES build
master
Andrew Tridgell 6 years ago
parent
commit
db5776d080
  1. 2
      .travis.yml
  2. 8
      Tools/scripts/build_ci.sh

2
.travis.yml

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

8
Tools/scripts/build_ci.sh

@ -109,6 +109,14 @@ for t in $CI_BUILD_TARGET; do @@ -109,6 +109,14 @@ for t in $CI_BUILD_TARGET; do
continue
fi
if [ "$t" == "fmuv2-plane" ]; then
echo "Building fmuv2 plane"
$waf configure --board fmuv2
$waf clean
$waf plane
continue
fi
if [ "$t" == "iofirmware" ]; then
echo "Building iofirmware"
$waf configure --board iomcu

Loading…
Cancel
Save