Travis: don't build same configuration multiple times

In ArduPlane "make all" is the same as "make sitl" and both sitl and
linux are already covered by the loop below.  Don't build the same
configuration multiple times.
This commit is contained in:
Lucas De Marchi 2015-06-11 19:51:25 -03:00 committed by Andrew Tridgell
parent 5b14ce7694
commit a124fbc4c2
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ set -x
echo "Testing ArduPlane build"
pushd ArduPlane
for b in all apm2 sitl linux; do
for b in apm2; do
pwd
make clean
make $b -j4