.travis.yml 559 B

1234567891011121314151617181920212223
  1. osx_image: xcode8.3
  2. language: objective-c
  3. cache:
  4. - bundler
  5. - cocoapods
  6. rvm: 2.3.1
  7. before_install:
  8. - open -a "simulator" --args -CurrentDeviceUDID ABBD7191-486B-462F-80B4-AE08C5820DA1
  9. - bundle install
  10. - gem install xcpretty
  11. - bundle exec pod install --project-directory=Example --repo-update
  12. - bundle exec pod install --project-directory=Firestore/Example --no-repo-update
  13. script:
  14. - "! git grep ' $'" # Fail on trailing whitespace
  15. - ./test.sh
  16. - pod lib lint FirebaseCommunity.podspec --verbose | tail -40
  17. branches:
  18. only:
  19. - master