build_all: Need to remove APM2 from the default master build

This commit is contained in:
Grant Morphett 2015-08-31 17:10:47 +10:00 committed by Andrew Tridgell
parent 1595c137f8
commit 2769487ac0

View File

@ -10,7 +10,7 @@ set -x
echo "Testing ArduPlane build"
pushd ArduPlane
for b in all apm2 sitl linux; do
for b in all sitl linux; do
pwd
make clean
make $b -j4
@ -28,7 +28,7 @@ popd
echo "Testing APMRover build"
pushd APMrover2
for b in all apm2 sitl linux; do
for b in all sitl linux; do
pwd
make clean
make $b -j4
@ -37,7 +37,7 @@ popd
echo "Testing AntennaTracker build"
pushd AntennaTracker
for b in apm2 sitl; do
for b in sitl; do
pwd
make clean
make $b -j4
@ -50,8 +50,6 @@ examples="Tools/CPUInfo"
for d in $examples; do
pushd $d
make clean
make apm2 -j4
make clean
make sitl -j4
popd
done