-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
language: objective-c
branches:
except:
- gh-pages
before_install:
- gem install cocoapods -v '1.7.5'
install:
- gem install xcpretty
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- FRAMEWORK_NAME="SwiftAnalytics"
- UPDATE_DOCS="true"
matrix:
include:
- osx_image: xcode10.2
env: SCHEME="iOS" SDK="iphonesimulator" DESTINATION="OS=12.2,name=iPhone 8" SWIFT_VERSION="4.2" ACTION="test"
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- if [ -z "$TEST_SWIFTPM" ]; then
xcodebuild
"$ACTION"
-workspace Example/SwiftAnalytics.xcworkspace
-scheme SwiftAnalytics-Example
-sdk "$SDK"
-destination "$DESTINATION"
-configuration Debug
ONLY_ACTIVE_ARCH=YES
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES
GCC_GENERATE_TEST_COVERAGE_FILES=YES
SWIFT_VERSION=$SWIFT_VERSION;
else
swift test;
fi
- if [ $POD_LINT == "YES" ]; then
pod lib lint --verbose;
fi
after_success:
- bash <(curl -s https://codecov.io/bash) -J SwiftAnalytics
- test $TRAVIS_PULL_REQUEST == "false" &&
test $TRAVIS_BRANCH == "master" &&
test $UPDATE_DOCS == "true" &&
.scripts/update-gh-pages