-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (35 loc) · 902 Bytes
/
.travis.yml
File metadata and controls
41 lines (35 loc) · 902 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: swift
branches:
except:
- gh-pages
install:
- gem install cocoapods --pre -N
- gem install xcpretty -N
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- FRAMEWORK_NAME="CrashReporter"
matrix:
include:
- osx_image: xcode10.2
env: SCHEME="macOS" SDK="macosx10.14" DESTINATION="arch=x86_64" SWIFT_VERSION="5.0" ACTION="test"
script:
- set -o pipefail
- pod --version
- xcodebuild -version
- xcodebuild -showsdks
- xcodebuild
"$ACTION"
-project "$FRAMEWORK_NAME.xcodeproj"
-scheme "$FRAMEWORK_NAME"
-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
- pod lib lint --quick
after_success:
- bash <(curl -s https://codecov.io/bash)