forked from Alamofire/AlamofireNetworkActivityIndicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (29 loc) · 1.05 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
os: osx
osx_image: xcode9.4
branches:
only:
- master
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- PROJECT=AlamofireNetworkActivityIndicator.xcodeproj
- SCHEME="AlamofireNetworkActivityIndicator"
matrix:
- DESTINATION="OS=11.4,name=iPhone X" POD_LINT="YES"
- DESTINATION="OS=10.3.1,name=iPhone 7" POD_LINT="NO"
- DESTINATION="OS=9.3,name=iPhone 6" POD_LINT="NO"
script:
- set -o pipefail
- git submodule update --init --recursive
- pod repo update
- xcodebuild -version
- xcodebuild -showsdks
# Build Framework in Debug and Run Tests
- xcodebuild -project "$PROJECT" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty -c;
# Build Framework in Release and Run Tests
- xcodebuild -project "$PROJECT" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty -c;
# Run `pod lib lint` if specified
- if [ $POD_LINT == "YES" ]; then
pod lib lint;
fi