diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-05-13 11:17:14 +0200 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-05-13 11:17:14 +0200 |
commit | dfb9ba877ec1591ef4d6ad3c8df56eaa43dc1bad (patch) | |
tree | a82bc97caf18b0429ad32bde1e61b79cf871b01b | |
parent | 83913e86fe5b5553c107ffde5a00d380755707bc (diff) |
Travis: Filter verbose output of ndk install
Screw you travis... Timeout after 10 minutes without log output,
but build killed once the log reaches 4 MB...
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 427f68bba7..83c4b0557e 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 -v 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; + 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 |