-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.travis.yml
20 lines (18 loc) · 874 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: objective-c
osx_image: xcode9
sudo: false
env:
global:
- PROJECT="UINavigationItem+Margin.xcodeproj"
- SCHEME="UINavigationItem+Margin"
- SDK="iphonesimulator11.0"
- ACTION="test"
matrix:
- IOS_DESTINATION="platform=iOS Simulator,name=iPhone 5S,OS=10.3.1"
- IOS_DESTINATION="platform=iOS Simulator,name=iPhone 6S,OS=10.3.1"
- IOS_DESTINATION="platform=iOS Simulator,name=iPhone 7 Plus,OS=10.3.1"
- IOS_DESTINATION="platform=iOS Simulator,name=iPhone 5S,OS=11.0"
- IOS_DESTINATION="platform=iOS Simulator,name=iPhone 6S,OS=11.0"
- IOS_DESTINATION="platform=iOS Simulator,name=iPhone 7 Plus,OS=11.0"
script:
- set -o pipefail && xcodebuild clean $ACTION -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$IOS_DESTINATION" -configuration Debug CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c