-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy path.travis.yml
22 lines (20 loc) · 867 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: objective-c
before_install:
- export LANG=en_US.UTF-8
- env
- locale
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
- pod --version
- pod setup --silent
- pod repo update --silent
script:
- pod lib lint
- cd Example
- pod install
- cd ..
- set -o pipefail
- xcodebuild -workspace BPForms.xcworkspace -scheme 'BPFormsExample' -sdk iphonesimulator clean build | xcpretty -c
- xcodebuild -workspace BPForms.xcworkspace -scheme 'BPFormsExample' -sdk iphonesimulator test | xcpretty -c
- xcodebuild -workspace BPForms.xcworkspace -scheme 'BPForms' -sdk iphonesimulator clean build | xcpretty -c
- xcodebuild -workspace BPForms.xcworkspace -scheme 'BPFormsFramework' -sdk iphonesimulator clean build | xcpretty -c