Browse Source

autotest: speed up build_all_px4.sh

only build archives once
mission-4.1.18
Andrew Tridgell 11 years ago
parent
commit
cdf813697a
  1. 9
      Tools/scripts/build_all_px4.sh

9
Tools/scripts/build_all_px4.sh

@ -8,21 +8,24 @@
set -e set -e
set -x set -x
for d in ArduPlane ArduCopter APMrover2; do
pushd $d
make px4-clean
popd
done
echo "Testing ArduPlane build" echo "Testing ArduPlane build"
pushd ArduPlane pushd ArduPlane
make px4-clean
make px4 make px4
popd popd
echo "Testing ArduCopter build" echo "Testing ArduCopter build"
pushd ArduCopter pushd ArduCopter
make px4-clean
make px4 make px4
popd popd
echo "Testing APMrover2 build" echo "Testing APMrover2 build"
pushd APMrover2 pushd APMrover2
make px4-clean
make px4 make px4
popd popd

Loading…
Cancel
Save