Skip to content

Commit 70da94b

Browse files
committed
Update circle.yml (using xcodebuild)
1 parent 5410309 commit 70da94b

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

circle.yml

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,19 @@ machine:
44

55
test:
66
override:
7-
- xctool
8-
-reporter pretty
9-
-reporter junit:$CIRCLE_TEST_REPORTS/xcode/results-OSX.xml
10-
-reporter plain:$CIRCLE_ARTIFACTS/xctool-OSX.log
11-
-scheme "SwiftState-OSX"
12-
clean build build-tests run-tests
13-
- xctool
14-
-reporter pretty
15-
-reporter junit:$CIRCLE_TEST_REPORTS/xcode/results-iOS.xml
16-
-reporter plain:$CIRCLE_ARTIFACTS/xctool-iOS.log
17-
CODE_SIGNING_REQUIRED=NO
18-
CODE_SIGN_IDENTITY=
19-
PROVISIONING_PROFILE=
20-
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
21-
-sdk iphonesimulator
22-
-scheme "SwiftState-iOS"
23-
clean build build-tests run-tests
7+
- set -o pipefail &&
8+
xcodebuild
9+
-scheme "SwiftState-OSX"
10+
clean build test |
11+
tee $CIRCLE_ARTIFACTS/xcode_raw-OSX.log |
12+
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-OSX.xml
13+
14+
- set -o pipefail &&
15+
xcodebuild
16+
CODE_SIGNING_REQUIRED=NO
17+
CODE_SIGN_IDENTITY=
18+
PROVISIONING_PROFILE=
19+
-scheme "SwiftState-iOS"
20+
clean build test |
21+
tee $CIRCLE_ARTIFACTS/xcode_raw-iOS.log |
22+
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-iOS.xml

0 commit comments

Comments
 (0)