-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
28 lines (24 loc) · 840 Bytes
/
.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
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
##before_install:
## - pip install codecov
after_success:
- bash <(curl -s https://codecov.io/bash)
script:
- set -o pipefail && xcodebuild test -workspace Example/GGRest.xcworkspace -scheme GGRest-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty
- pod lib lint
notifications:
slack: greengrowapps:puqXRTN44ErQnOysiH6JgOi3
#deploy:
# provider: script
# script: ./scripts/push.sh
# on:
# tags: true
# all_branches: true