Tools: scripts: remove build_all_vrbrain.sh

This commit is contained in:
Peter Barker 2019-02-11 22:26:03 +11:00 committed by Peter Barker
parent e12581eeb9
commit 5828915a02

View File

@ -1,37 +0,0 @@
#!/bin/bash
# build all targets for PX4
# This helps when doing large merges
# Andrew Tridgell, February 2013
. config.mk
set -e
set -x
for d in ArduPlane ArduCopter APMrover2 ArduSub; do
pushd $d
make vrbrain-clean
popd
done
echo "Testing ArduPlane build"
pushd ArduPlane
make vrbrain
popd
echo "Testing ArduCopter build"
pushd ArduCopter
make vrbrain
popd
echo "Testing APMrover2 build"
pushd APMrover2
make vrbrain
popd
echo "Testing ArduSub build"
pushd ArduSub
make vrbrain
popd
exit 0