Skip to content

Commit

Permalink
Use greater Travis timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
funkyboy committed May 10, 2018
1 parent a4c33ad commit 2f3c8b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ before_script:
- if [ "$BUILD_ANDROID" = "true" ]; then android-wait-for-emulator; fi
- if [ "$BUILD_ANDROID" = "true" ]; then adb shell input keyevent 82 & fi

script: if [ "$BUILD_ANDROID" = "true" ]; then ./ci/run-android-tests.sh; else ./ci/run-java-tests.sh; fi
script: travis_wait 30 ./ci/run-travis-tests.sh

# Buffer overflow patch. Source: https://github.com/travis-ci/travis-ci/issues/5227#issuecomment-165135711
before_install:
Expand Down
8 changes: 8 additions & 0 deletions ci/run-travis-tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

if [ $BUILD_ANDROID == true ]
then
./ci/run-android-tests.sh
else
./ci/run-java-tests.sh
fi

0 comments on commit 2f3c8b1

Please sign in to comment.