13 lines
366 B
YAML
13 lines
366 B
YAML
language: objective-c
|
|
osx_image: xcode10
|
|
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 45 carthage bootstrap --platform iOS
|
|
script:
|
|
- fastlane test
|
|
- if [ "$TRAVIS_EVENT_TYPE" = "push" ]; then fastlane beta; fi
|