forked from angrymango/CronExpression
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.travis.yml
More file actions
18 lines (16 loc) · 673 Bytes
/
Copy path.travis.yml
File metadata and controls
18 lines (16 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8.1
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- cd Example && pod install
- set -o pipefail && xcodebuild test -workspace SwiftCronExample.xcworkspace -scheme SwiftCronExample -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' ONLY_ACTIVE_ARCH=YES | xcpretty
- cd .. && pod lib lint
after_success:
- bash <(curl -s https://codecov.io/bash)