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
|
|
|
|
|
2013-09-03 23:03:54 -03:00
|
|
|
. config.mk
|
|
|
|
|
2011-11-25 18:57:46 -04:00
|
|
|
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
|
2013-04-15 22:26:01 -03:00
|
|
|
for b in all apm2 apm2beta apm1-hil apm1-hilsensors apm2-hil apm2-hilsensors sitl sitl-mount sitl-newcontrollers; do
|
2011-11-25 18:57:46 -04:00
|
|
|
pwd
|
|
|
|
make clean
|
2013-01-06 20:11:10 -04:00
|
|
|
make $b -j4
|
2011-11-25 18:57:46 -04:00
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
2012-02-19 01:58:25 -04:00
|
|
|
echo "Testing ArduCopter build"
|
2011-11-25 18:57:46 -04:00
|
|
|
pushd ArduCopter
|
2013-01-11 06:19:32 -04:00
|
|
|
for b in all apm2 apm1-hil apm2-hil sitl heli dmp; do
|
2011-11-25 18:57:46 -04:00
|
|
|
pwd
|
|
|
|
make clean
|
2013-01-06 20:11:10 -04:00
|
|
|
make $b -j4
|
2011-11-25 18:57:46 -04:00
|
|
|
done
|
|
|
|
popd
|
2012-02-19 01:58:25 -04:00
|
|
|
|
2012-06-10 06:35:56 -03:00
|
|
|
echo "Testing APMRover build"
|
|
|
|
pushd APMrover2
|
2013-06-03 22:58:29 -03:00
|
|
|
for b in all apm2 sitl apm2-hil; do
|
2012-06-10 06:35:56 -03:00
|
|
|
pwd
|
|
|
|
make clean
|
2013-01-06 20:11:10 -04:00
|
|
|
make $b -j4
|
2012-06-10 06:35:56 -03:00
|
|
|
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
|
2013-01-06 20:11:10 -04:00
|
|
|
make -j4
|
2012-02-19 01:58:25 -04:00
|
|
|
popd
|
|
|
|
done
|
2012-02-19 18:16:57 -04:00
|
|
|
|
2013-09-23 04:08:13 -03:00
|
|
|
test -d ../libmaple && {
|
|
|
|
echo "Testing flymaple build"
|
|
|
|
for d in ArduPlane ArduCopter APMrover2; do
|
|
|
|
pushd $d
|
|
|
|
make clean
|
|
|
|
make flymaple
|
|
|
|
popd
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2013-02-11 17:35:39 -04:00
|
|
|
test -n "$PX4_ROOT" && test -d "$PX4_ROOT" && {
|
|
|
|
./Tools/scripts/build_all_px4.sh
|
|
|
|
}
|
|
|
|
|
2012-02-19 18:16:57 -04:00
|
|
|
exit 0
|