Use travis_wait to extend building time

This commit is contained in:
Bob Sun 2018-05-03 10:02:19 -07:00
parent 7933fe6897
commit 1b08e9e638
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -3,7 +3,7 @@
gem update fastlane
gem install xcodeproj
if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then
fastlane test;
fastlane test;
else
fastlane travis;
fi