From 1b08e9e638c49731fbf57dc4e4dd44470a6e6a3b Mon Sep 17 00:00:00 2001 From: Bob Sun Date: Thu, 3 May 2018 10:02:19 -0700 Subject: [PATCH] Use travis_wait to extend building time --- .travis.yml | 2 +- fastlane/travis.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2387501..58842af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,4 @@ branches: before_install: - echo -e "machine github.com\n login $GITHUB_ACCESS_TOKEN" >> ~/.netrc script: - - ./fastlane/travis.sh + - travis_wait 30 ./fastlane/travis.sh diff --git a/fastlane/travis.sh b/fastlane/travis.sh index f6e503e..8040c70 100755 --- a/fastlane/travis.sh +++ b/fastlane/travis.sh @@ -3,7 +3,7 @@ gem update fastlane gem install xcodeproj if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then - fastlane test; + fastlane test; else fastlane travis; fi