forked from magicalpanda/MagicalRecord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
49 lines (47 loc) · 1.5 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
45
46
47
48
49
machine:
xcode:
version: "6.3.1"
checkout:
post:
- git submodule sync
- git submodule update --init
test:
override:
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-ios-framework"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
-project MagicalRecord.xcodeproj
-scheme "MagicalRecord for iOS"
build test
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-osx-framework"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk macosx
-project MagicalRecord.xcodeproj
-scheme "MagicalRecord for OS X"
build test
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-ios-static-library"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
-project MagicalRecord.xcodeproj
-scheme "libMagicalRecord for iOS"
build test
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-osx-dynamic-library"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk macosx
-project MagicalRecord.xcodeproj
-scheme "libMagicalRecord for OS X"
build test