-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
21 lines (20 loc) · 763 Bytes
/
.travis.yml
File metadata and controls
21 lines (20 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
xcode_workspace: Example/ExponentialBackOff.xcworkspace
xcode_scheme: ExponentialBackOff-Example
xcode_sdk: iphonesimulator9.3
before_install:
- rvm install ruby-2.2.2
- rvm use ruby-2.2.2
- gem install cocoapods --no-ri --no-rdoc # Since Travis is not always on latest version
# - pod install --project-directory=Example
# script:
# - set -o pipefail && xcodebuild test -workspace Example/ExponentialBackOff.xcworkspace -scheme ExponentialBackOff-Example -sdk iphonesimulator9.2 ONLY_ACTIVE_ARCH=NO | xcpretty
# - pod lib lint
after_script:
- pod lib lint