forked from hackiftekhar/IQKeyboardManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (34 loc) · 1010 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
29
30
31
32
33
34
35
matrix:
include:
- language: objective-c
branches:
only:
- master
os: osx
osx_image: xcode15
xcode_workspace: Demo.xcworkspace
xcode_project: Demo.xcodeproj
xcode_scheme: DemoObjC
before_install:
- sudo gem install activesupport -v 4.2.6
- rvm install 2.3.1
- rvm use 2.3.1
- sudo gem install cocoapods
script:
- xcodebuild -workspace Demo.xcworkspace -scheme DemoObjC -sdk iphonesimulator
- language: swift
branches:
only:
- master
os: osx
osx_image: xcode15
xcode_workspace: Demo.xcworkspace
xcode_project: Demo.xcodeproj
xcode_scheme: DemoSwift
before_install:
- sudo gem install activesupport -v 4.2.6
- rvm install 2.3.1
- rvm use 2.3.1
- sudo gem install cocoapods
script:
- xcodebuild -workspace Demo.xcworkspace -scheme DemoSwift -sdk iphonesimulator