autotest: added linux build to build_all.sh

This commit is contained in:
Andrew Tridgell 2013-10-01 12:10:38 +10:00
parent 51c19331a6
commit 453581b25a
1 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ set -x
echo "Testing ArduPlane build" echo "Testing ArduPlane build"
pushd ArduPlane pushd ArduPlane
for b in all apm2 apm2beta apm1-hil apm1-hilsensors apm2-hil apm2-hilsensors sitl sitl-mount sitl-newcontrollers; do for b in all apm2 apm2beta apm1-hil apm1-hilsensors apm2-hil apm2-hilsensors sitl sitl-mount sitl-newcontrollers linux; do
pwd pwd
make clean make clean
make $b -j4 make $b -j4
@ -19,7 +19,7 @@ popd
echo "Testing ArduCopter build" echo "Testing ArduCopter build"
pushd ArduCopter pushd ArduCopter
for b in all apm2 apm1-hil apm2-hil sitl heli dmp; do for b in all apm2 apm1-hil apm2-hil sitl heli dmp linux; do
pwd pwd
make clean make clean
make $b -j4 make $b -j4
@ -28,7 +28,7 @@ popd
echo "Testing APMRover build" echo "Testing APMRover build"
pushd APMrover2 pushd APMrover2
for b in all apm2 sitl apm2-hil; do for b in all apm2 sitl apm2-hil linux; do
pwd pwd
make clean make clean
make $b -j4 make $b -j4
@ -50,7 +50,7 @@ echo "Testing flymaple build"
for d in ArduPlane ArduCopter APMrover2; do for d in ArduPlane ArduCopter APMrover2; do
pushd $d pushd $d
make clean make clean
make flymaple make flymaple -j4
popd popd
done done
} }