Skip to content

Commit

Permalink
Travis: build quad only
Browse files Browse the repository at this point in the history
  • Loading branch information
jschall committed Jan 22, 2015
1 parent eb9c5cd commit da1e7ad
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ before_install:
- APMDIR=$(pwd) && pushd .. && $APMDIR/Tools/scripts/install-prereqs-ubuntu.sh -y && . ~/.profile && popd

script:
- Tools/scripts/build_all_travis.sh
- Tools/scripts/build_px4_v2_quad_travis.sh

deploy:
provider: releases
Expand Down
18 changes: 18 additions & 0 deletions Tools/scripts/build_px4_v2_quad_travis.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash
# useful script to test all the different build types that we support.
# This helps when doing large merges
# Andrew Tridgell, November 2011

. config.mk

set -e
set -x

pushd ArduCopter
make configure
make clean
make px4-cleandep
make px4-v2
popd

exit 0

0 comments on commit da1e7ad

Please sign in to comment.