summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-05-13 10:26:15 +0200
committerRémi Verschelde <remi@verschelde.fr>2016-05-13 10:26:15 +0200
commit83913e86fe5b5553c107ffde5a00d380755707bc (patch)
treebcdb380ce6e535bd5771b1c0785d97056c5781e0
parent79f29babc961c9989f07455c318955cb9b3f90d6 (diff)
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.
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index f2f087fc98..427f68bba7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -68,7 +68,7 @@ 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 android-ndk; 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