mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
a0d4e940ef
ensure heli builds are tested
24 lines
399 B
Bash
Executable File
24 lines
399 B
Bash
Executable File
#!/bin/bash
|
|
# useful script to test all the different build types that we support.
|
|
# This helps when doing large merges
|
|
# Andrew Tridgell, November 2011
|
|
|
|
set -e
|
|
set -x
|
|
|
|
pushd ArduPlane
|
|
for b in all apm2 apm2beta hil hilsensors mavlink10 sitl; do
|
|
pwd
|
|
make clean
|
|
make $b
|
|
done
|
|
popd
|
|
|
|
pushd ArduCopter
|
|
for b in all apm2 apm2beta hil sitl heli; do
|
|
pwd
|
|
make clean
|
|
make $b
|
|
done
|
|
popd
|