forked from teodorpatras/SideMenuController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
22 lines (21 loc) · 708 Bytes
/
.travis.yml
File metadata and controls
22 lines (21 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
env:
global:
- WORKSPACE=SideMenuController.xcworkspace
- FRAMEWORK_NAME=SideMenuController
- PROJECT=SideMenuController.xcodeproj
- SCHEME=SideMenuController
- SDK=iphonesimulator10
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
before_deploy:
- carthage build --no-skip-current
- carthage archive $FRAMEWORK_NAME
script:
- set -o pipefail
- xcodebuild -scheme $SCHEME -workspace $WORKSPACE -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.0' build test
- pod lib lint --quick