-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.travis.yml
32 lines (29 loc) · 844 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
# DO WORK WITH XCODE 8 SINCE xcodebuild IS SUPPORTING IT.
#
# Basic
language: objective-c
osx_image: xcode8
script: xcodebuild -workspace Example/Example.xcworkspace -scheme Example -sdk iphonesimulator10.0
# CocoaPods
podfile: AFNetworking+RetryPolicy Example/Podfile
# Notifications
notifications:
email: false
# ------------------------------------------------------------
# DO NOT WORK WITH XCODE 8 SINCE xctools IS NOT SUPPORTING IT.
#
## Basic
#language: objective-c
#osx_image: xcode7.3
#xcode_scheme: AFNetworking+RetryPolicy Example
#xcode_workspace: AFNetworking+RetryPolicy Example/AFNetworking+RetryPolicy Example.xcworkspace
#
## Test on simulator (Does not require code signing)
#xcode_sdk: iphonesimulator9.3
#
## CocoaPods
#podfile: AFNetworking+RetryPolicy Example/Podfile
#
## Notifications
#notifications:
#email: false