forked from datatheorem/TrustKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
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: 9.2.0
test:
override:
# iOS 10.0 platform with iOS 11.2 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=iOS Simulator,name=iPhone 5,OS=10.3.1'
-sdk iphonesimulator11.2
-scheme "TrustKit"
# iOS 11.2 platform with iOS 11.2 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=iOS Simulator,name=iPhone 7,OS=11.2'
-sdk iphonesimulator11.2
-scheme "TrustKit"
# macOS 10.13 platform with macOS 10.13 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=OS X'
-sdk macosx10.13
-scheme "TrustKit OS X"
# tvOS 11.2 platform with tvOS 11.2 SDK
- xcodebuild clean test
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
-destination 'platform=tvOS Simulator,name=Apple TV,OS=11.2'
-sdk appletvsimulator11.2
-scheme "TrustKit tvOS"