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

Loading…
Cancel
Save