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
|
2012-12-03 20:13:54 -04:00
|
|
|
for b in all apm2 apm2beta hil hilsensors hil-apm2 hilsensors-apm2 sitl sitl-mount sitl-newcontrollers; 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-08-21 02:58:59 -03:00
|
|
|
for b in all apm2 apm2beta hil sitl heli dmp; do
|
2011-11-25 18:57:46 -04:00
|
|
|
pwd
|
|
|
|
make clean
|
|
|
|
make $b
|
|
|
|
done
|
|
|
|
popd
|
2012-02-19 01:58:25 -04:00
|
|
|
|
2012-06-10 06:35:56 -03:00
|
|
|
echo "Testing APMRover build"
|
|
|
|
pushd APMrover2
|
2012-11-27 06:50:08 -04:00
|
|
|
for b in all apm2 sitl; do
|
2012-06-10 06:35:56 -03: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
|