2011-11-25 18:57:46 -04:00
|
|
|
#!/bin/bash
|
|
|
|
# useful script to test all the different build types that we support.
|
|
|
|
# This helps when doing large merges
|
|
|
|
# Andrew Tridgell, November 2011
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2012-02-19 01:58:25 -04:00
|
|
|
echo "Testing ArduPlane build"
|
2011-11-25 18:57:46 -04:00
|
|
|
pushd ArduPlane
|
2011-12-11 23:59:53 -04:00
|
|
|
for b in all apm2 apm2beta hil hilsensors mavlink10 sitl; do
|
2011-11-25 18:57:46 -04:00
|
|
|
pwd
|
|
|
|
make clean
|
|
|
|
make $b
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
2012-02-19 01:58:25 -04:00
|
|
|
echo "Testing ArduCopter build"
|
2011-11-25 18:57:46 -04:00
|
|
|
pushd ArduCopter
|
2012-02-19 01:34:37 -04:00
|
|
|
for b in all apm2 apm2beta hil sitl heli; do
|
2011-11-25 18:57:46 -04:00
|
|
|
pwd
|
|
|
|
make clean
|
|
|
|
make $b
|
|
|
|
done
|
|
|
|
popd
|
2012-02-19 01:58:25 -04:00
|
|
|
|
|
|
|
echo "Testing build of examples"
|
|
|
|
|
|
|
|
examples="Tools/VARTest Tools/CPUInfo"
|
|
|
|
for d in $examples; do
|
|
|
|
pushd $d
|
|
|
|
make clean
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
done
|
2012-02-19 18:16:57 -04:00
|
|
|
|
|
|
|
exit 0
|