forked from firebase/quickstart-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
66 lines (60 loc) · 1.51 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
osx_image: xcode11
language: objective-c
cache:
- bundler
- cocoapods
env:
# Override this variable in the matrix to specify a Swift target name suffix.
# The variable is used by `./test.sh`
- SWIFT_SUFFIX=
matrix:
include:
- podfile: abtesting/Podfile
env: SAMPLE=ABTesting
- podfile: admob/Podfile
env:
- SAMPLE=AdMob
- SWIFT_SUFFIX=Swift
- podfile: analytics/Podfile
env: SAMPLE=Analytics
- podfile: authentication/Podfile
env: SAMPLE=Authentication
- podfile: config/Podfile
env: SAMPLE=Config
- podfile: crashlytics/Podfile
env: SAMPLE=Crashlytics
- podfile: database/Podfile
env: SAMPLE=Database
- podfile: dynamiclinks/Podfile
env: SAMPLE=DynamicLinks
- podfile: firestore/Podfile
env: SAMPLE=Firestore
- podfile: functions/Podfile
env: SAMPLE=Functions
- podfile: messaging/Podfile
env: SAMPLE=InAppMessaging
- podfile: inappmessaging/Podfile
env: SAMPLE=Messaging
- podfile: mlvision/Podfile
env: SAMPLE=MLVision
- podfile: performance/Podfile
env: SAMPLE=Performance
- podfile: storage/Podfile
env: SAMPLE=Storage
- podfile: installations/Podfile
env: SAMPLE=Installations
- podfile: installations/Podfile
env:
- SAMPLE=Installations
- SWIFT_SUFFIX=Swift
before_install:
- cd $SAMPLE
- bundle install
- gem install xcpretty
- bundle exec pod install --repo-update
- ../scripts/install_prereqs/$SAMPLE.sh
- cd -
script: travis_retry ./scripts/test.sh
branches:
only:
- master