-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.travis.yml
26 lines (22 loc) · 918 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
23
24
25
26
language: objective-c
osx_image: xcode8
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
matrix:
- DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="Router" SDK=iphonesimulator10.0
- DESTINATION="OS=8.2,name=iPhone 5" SCHEME="Router" SDK=iphonesimulator10.0
- DESTINATION="OS=8.3,name=iPhone 5S" SCHEME="Router" SDK=iphonesimulator10.0
- DESTINATION="OS=8.4,name=iPhone 6" SCHEME="Router" SDK=iphonesimulator10.0
- DESTINATION="OS=9.0,name=iPhone 6 Plus" SCHEME="Router" SDK=iphonesimulator10.0
cache:
- bundler
- cocoapods
before_install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
- bundler exec pod repo update --silent
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -workspace Router.xcworkspace -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c