forked from Eleme-IMF/DRDNetworking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
19 lines (16 loc) · 662 Bytes
/
Copy path.travis.yml
File metadata and controls
19 lines (16 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
sudo: false
osx_image: xcode7.2
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - brew update
# - brew install xctool
script:
- xctool -workspace Example/DRDNetworking.xcworkspace -scheme DRDNetworking-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool test -workspace Example/DRDNetworking.xcworkspace -scheme DRDNetworking_Tests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- bash <(curl -s https://codecov.io/bash)