aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 22b130cbc9fa98bb8797ab77ab378f77269c03f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
osx_image: xcode8.3
language: objective-c
cache:
  - bundler
  - cocoapods

rvm: 2.3.1
before_install:
  - open -a "simulator" --args -CurrentDeviceUDID ABBD7191-486B-462F-80B4-AE08C5820DA1
  - bundle install
  - gem install xcpretty
  - bundle exec pod install --project-directory=Example --repo-update

script:
  - "! git grep ' $'" # Fail on trailing whitespace
  - ./test.sh
  - pod lib lint FirebaseCommunity.podspec --verbose | tail -40

branches:
  only:
    - master