-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathcircle.yml
More file actions
29 lines (26 loc) · 794 Bytes
/
circle.yml
File metadata and controls
29 lines (26 loc) · 794 Bytes
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
machine:
xcode:
version: "7.3"
checkout:
post:
- git submodule sync
- git submodule update --init --recursive
test:
override:
- set -o pipefail &&
xcodebuild
-scheme "SwiftTask"
clean build |
tee $CIRCLE_ARTIFACTS/xcode_raw-OSX.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-OSX.xml
- set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination 'platform=iOS Simulator,OS=9.0,name=iPhone 6'
-scheme "SwiftTask"
clean build |
tee $CIRCLE_ARTIFACTS/xcode_raw-iOS.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-iOS.xml