forked from datatheorem/TrustKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
37 lines (33 loc) · 1.03 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
machine:
xcode:
version: 8.3
test:
override:
# iOS 9.0 platform with iOS 10.3 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=iOS Simulator,name=iPhone 5,OS=9.0'
-sdk iphonesimulator10.3
-scheme "TrustKit"
# iOS 10.3 platform with iOS 10.3 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=iOS Simulator,name=iPhone 7,OS=10.3.1'
-sdk iphonesimulator10.3
-scheme "TrustKit"
# macOS 10.12 platform with macOS 10.12 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=OS X'
-sdk macosx10.12
-scheme "TrustKit OS X"
# tvOS 10.3 platform with tvOS 10.3 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=tvOS Simulator,name=Apple TV 1080p,OS=10.2'
-sdk appletvsimulator10.2
-scheme "TrustKit tvOS"