-
-
Notifications
You must be signed in to change notification settings - Fork 278
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (20 loc) · 663 Bytes
/
.travis.yml
File metadata and controls
25 lines (20 loc) · 663 Bytes
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
language: objective-c
os: osx
osx_image:
- xcode10.2
env:
global:
- IOS_SCHEME="HGCircularSlider"
matrix:
- DESTINATION="OS=12.0,name=iPhone X"
SCHEME="$IOS_SCHEME" RUN_TESTS="YES"
- DESTINATION="OS=10.3.1,name=iPhone 7 Plus"
SCHEME="$IOS_SCHEME" RUN_TESTS="YES"
- DESTINATION="OS=9.3,name=iPhone 5"
SCHEME="$IOS_SCHEME" RUN_TESTS="YES"
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- xcodebuild build -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug | xcpretty;
- xcodebuild build -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release | xcpretty;