-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.travis.yml
38 lines (35 loc) · 1.22 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
33
34
35
36
37
38
language: objective-c
osx_image: xcode10.2
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- PROJECT=MomXML.xcodeproj
- IOS_FRAMEWORK_SCHEME="MomXMLiOS"
- MACOS_FRAMEWORK_SCHEME="MomXML"
- IOS_SDK=iphonesimulator12.2
- MACOS_SDK=macosx10.14
matrix:
- DESTINATION="OS=12.2,name=iPhone 8" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="NO"
- DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" SDK="$MACOS_SDK" RUN_TESTS="YES"
before_install:
- gem install xcpretty --no-document --quiet
- brew install carthage || true
- brew outdated carthage || brew upgrade carthage
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- carthage version
- carthage update
- if [ $RUN_TESTS == "YES" ]; then
xcodebuild -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty;
else
xcodebuild -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty;
fi
- swift build
after_success:
- bash <(curl -s https://codecov.io/bash)
branches:
only:
- master