scripts: added some more builds to build_all.sh

This commit is contained in:
Andrew Tridgell 2012-02-19 16:58:25 +11:00
parent df8a557630
commit 08d730c266

View File

@ -6,6 +6,7 @@
set -e
set -x
echo "Testing ArduPlane build"
pushd ArduPlane
for b in all apm2 apm2beta hil hilsensors mavlink10 sitl; do
pwd
@ -14,6 +15,7 @@ for b in all apm2 apm2beta hil hilsensors mavlink10 sitl; do
done
popd
echo "Testing ArduCopter build"
pushd ArduCopter
for b in all apm2 apm2beta hil sitl heli; do
pwd
@ -21,3 +23,13 @@ for b in all apm2 apm2beta hil sitl heli; do
make $b
done
popd
echo "Testing build of examples"
examples="Tools/VARTest Tools/CPUInfo"
for d in $examples; do
pushd $d
make clean
make
popd
done