From 3a1e69f45c46597f9d649fb864e37c3b62cb435a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 13 May 2016 10:26:15 +0200 Subject: [PATCH] Travis: Install android *DKs in verbose mode Builds tend to fail due to the 10 min limit for stalled builds. Most likely because the download is done silently and takes more than 10 min depending on the Travis connection. (cherry picked from commit 83913e86fe5b5553c107ffde5a00d380755707bc) (cherry picked from commit dfb9ba877ec1591ef4d6ad3c8df56eaa43dc1bad) (cherry picked from commit 1bdda9a92255d7c333b2ee621179d178b355e11a) --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f2f087fc98..c5f9cf48b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -68,7 +68,11 @@ addons: before_script: - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update; brew install scons; fi - - if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$GODOT_TARGET" = "android" ]; then brew update; brew install android-sdk android-ndk; export ANDROID_HOME=/usr/local/opt/android-sdk; export ANDROID_NDK_ROOT=/usr/local/opt/android-ndk; fi + - if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$GODOT_TARGET" = "android" ]; then + brew update; brew install -v android-sdk; + brew install -v android-ndk | grep -v "inflating:" | grep -v "creating:"; + export ANDROID_HOME=/usr/local/opt/android-sdk; export ANDROID_NDK_ROOT=/usr/local/opt/android-ndk; + fi script: - scons platform=$GODOT_TARGET CXX=$CXX openssl=builtin