Skip to content
Snippets Groups Projects
Commit 0a7c769f authored by Andrew Tridgell's avatar Andrew Tridgell
Browse files

scripts: added some more builds to build_all.sh

parent 1fc24b50
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment