forked from edopelawi/CascadingTableDelegate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
23 lines (20 loc) · 813 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
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode11.1
language: objective-c
env: SWIFT_SNAPSHOT=5.0
cache: cocoapods
podfile: Example/Podfile
# TODO: Uncomment these lines after Quick and Nimble updated their pod versions.
before_install:
- gem install cocoapods # Since Travis is not always on latest version
# - pod repo update # Uncomment this when the pod install failed because of the stale pod repo
- pod install --project-directory=Example --verbose
script:
- set -o pipefail && xcodebuild
-workspace Example/CascadingTableDelegate.xcworkspace
-scheme CascadingTableDelegate-Example
-destination 'platform=iOS Simulator,name=iPhone 8'
clean test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty
- pod lib lint