forked from datatheorem/TrustKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
45 lines (44 loc) · 1.38 KB
/
circle.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
36
37
38
39
40
41
42
43
44
machine:
xcode:
version: 8.0
test:
override:
# First run Xcode 7 tests
- sudo xcode-select --switch /Applications/Xcode-7.3.app
# iOS 8 platform with iOS 9 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=iOS Simulator,name=iPhone 4S,OS=8.4'
-sdk iphonesimulator9.3
-scheme "TrustKit"
# OS X 10.11 platform with OS X 10.11 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=OS X'
-sdk macosx10.11
-scheme "TrustKit OS X"
# Switch to Xcode 8
- sudo xcode-select --switch /Applications/Xcode-8.0.app
# iOS 10 platform with iOS 10 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=iOS Simulator,name=iPhone 6,OS=10.0'
-sdk iphonesimulator10.0
-scheme "TrustKit"
# tvOS 10 platform with tvOS 10 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=tvOS Simulator,name=Apple TV 1080p,OS=10.0'
-sdk appletvsimulator10.0
-scheme "TrustKit tvOS"
# OS X 10.11 platform with OS X 10.12 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=OS X'
-sdk macosx10.12
-scheme "TrustKit OS X"