passforios/.travis.yml

17 lines
396 B
YAML
Raw Normal View History

2017-03-24 23:16:58 -07:00
language: objective-c
osx_image: xcode9.4
2017-03-28 10:40:31 -07:00
branches:
only:
- develop
before_install:
- echo -e "machine github.com\n login $GITHUB_ACCESS_TOKEN" >> ~/.netrc
install:
- gem update fastlane
- gem install xcodeproj
before_script:
- pod install
- travis_wait carthage bootstrap --platform iOS
2017-03-24 23:16:58 -07:00
script:
- fastlane test
- if [ "$TRAVIS_EVENT_TYPE" = "push" ]; then fastlane beta; fi