diff options
author | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2016-10-07 11:05:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-07 11:05:03 +0300 |
commit | f73f554cc040507d5f28223678533fc12c9ba7cc (patch) | |
tree | b02ab6dd68577b4baca63ad3433c037894cebbd8 | |
parent | 1f9e16119f2b17fa507bdee8529459ed91f27b8c (diff) |
Attempt to fix travis builds for android
Using travis_wait command
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 3c7ee5c102..d76fcca791 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,8 +69,8 @@ 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; - brew install -v android-ndk | grep -v "inflating:" | grep -v "creating:"; + brew update; travis_wait 20 brew install -v android-sdk; + travis_wait 20 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 |