forked from dzenbot/DZNEmptyDataSet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (21 loc) · 709 Bytes
/
.travis.yml
File metadata and controls
28 lines (21 loc) · 709 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
osx_image: xcode9.2
language: objective-c
sudo: required
cache:
- bundler
- cocoapods
before_install:
- bundle install
- bundle exec danger
env:
global:
- LANG=en_US.UTF-8
- WORKSPACE="DZNEmptyDataSet/DZNEmptyDataSet.xcworkspace"
- IOS_SCHEME="DZNEmptyDataSet"
- IOS_SDK="iphonesimulator11.2"
matrix:
- DESTINATION="OS=11.2,name=iPhone 8" SDK="$IOS_SDK" SCHEME="$IOS_SCHEME"
script:
- xcodebuild clean build test -scheme "$SCHEME" -workspace "$WORKSPACE" SDK="$IOS_SDK" -destination "$DESTINATION" -configuration Debug GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- bash <(curl -s https://codecov.io/bash)