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...
This commit is contained in:
Rémi Verschelde 2016-05-13 11:17:14 +02:00
parent 83913e86fe
commit dfb9ba877e

View file

@ -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