Build: removed HIL builds

now use HIL_MODE=1
This commit is contained in:
Andrew Tridgell 2015-03-13 22:54:55 +11:00
parent e1b998f011
commit ac4b52a31c
5 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ set -x
echo "Testing ArduPlane build"
pushd ArduPlane
for b in all apm2 apm2beta apm1-hil apm1-hilsensors apm2-hil apm2-hilsensors sitl sitl-mount linux apm2-obc; do
for b in all apm2 sitl linux; do
pwd
make clean
make $b -j4
@ -28,7 +28,7 @@ popd
echo "Testing APMRover build"
pushd APMrover2
for b in all apm2 sitl apm2-hil linux; do
for b in all apm2 sitl linux; do
pwd
make clean
make $b -j4

View File

@ -119,7 +119,7 @@ build_arduplane() {
tag="$1"
echo "Building ArduPlane $tag binaries from $(pwd)"
pushd ArduPlane
for b in apm1 apm2 apm1-hilsensors apm2-hilsensors; do
for b in apm1 apm2; do
checkout ArduPlane $tag $b || {
echo "Failed checkout of ArduPlane $b $tag"
error_count=$((error_count+1))
@ -185,7 +185,7 @@ build_arducopter() {
return
}
make px4-clean || return
for f in $frames quad-hil heli-hil; do
for f in $frames; do
echo "Building ArduCopter PX4-$f binaries"
ddir="$binaries/Copter/$hdate/PX4-$f"
skip_build $tag $ddir && continue

View File

@ -192,7 +192,7 @@ build_arducopter() {
return
}
make vrbrain-clean || return
for f in $frames quad-hil heli-hil; do
for f in $frames; do
echo "Building ArduCopter VRBRAIN-$f binaries"
ddir="$binaries/Copter/$hdate/VRX-$f"
skip_build $tag $ddir && continue

View File

@ -192,7 +192,7 @@ build_arducopter() {
return
}
make vrbrain-clean || return
for f in $frames quad-hil heli-hil; do
for f in $frames; do
echo "Building ArduCopter VRBRAIN-$f binaries"
ddir="$binaries/Copter/$hdate/VRX-$f"
skip_build $tag $ddir && continue

View File

@ -174,7 +174,7 @@ build_arducopter() {
frames="quad tri hexa y6 octa octa-quad heli"
test -n "$VRBRAIN_ROOT"
make vrbrain-clean || return
for f in $frames quad-hil heli-hil; do
for f in $frames; do
echo "Building ArduCopter VRBRAIN-$f binaries"
ddir="$binaries/Copter/$hdate/VRX-$f"
skip_build $tag $ddir && continue