Browse Source

travis: added build of iofirmware

master
Andrew Tridgell 6 years ago
parent
commit
19dae42c4f
  1. 2
      .travis.yml
  2. 8
      Tools/scripts/build_ci.sh

2
.travis.yml

@ -58,7 +58,7 @@ matrix: @@ -58,7 +58,7 @@ matrix:
include:
- if: type != cron
compiler: "gcc"
env: CI_BUILD_TARGET="px4-v2 revo-bootloader"
env: CI_BUILD_TARGET="px4-v2 revo-bootloader iofirmware"
- compiler: "gcc"
env: CI_BUILD_TARGET="px4-v4 revo-mini"
- if: type != cron

8
Tools/scripts/build_ci.sh

@ -92,6 +92,14 @@ for t in $CI_BUILD_TARGET; do @@ -92,6 +92,14 @@ for t in $CI_BUILD_TARGET; do
continue
fi
if [ $t == "iofirmware" ]; then
echo "Building iofirmware"
$waf configure --board iomcu
$waf clean
$waf iofirmware
continue
fi
if [ $t == "revo-mini" ]; then
# save some time by only building one target for revo-mini
echo "Building revo-mini"

Loading…
Cancel
Save