From a124fbc4c2267194587188e1e519a383ba512744 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Thu, 11 Jun 2015 19:51:25 -0300 Subject: [PATCH] Travis: don't build same configuration multiple times In ArduPlane "make all" is the same as "make sitl" and both sitl and linux are already covered by the loop below. Don't build the same configuration multiple times. --- Tools/scripts/build_all_travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/scripts/build_all_travis.sh b/Tools/scripts/build_all_travis.sh index 77252266a9..a96ade4457 100755 --- a/Tools/scripts/build_all_travis.sh +++ b/Tools/scripts/build_all_travis.sh @@ -12,7 +12,7 @@ set -x echo "Testing ArduPlane build" pushd ArduPlane -for b in all apm2 sitl linux; do +for b in apm2; do pwd make clean make $b -j4