File tree Expand file tree Collapse file tree 1 file changed +16
-17
lines changed Expand file tree Collapse file tree 1 file changed +16
-17
lines changed Original file line number Diff line number Diff line change @@ -4,20 +4,19 @@ machine:
44
55test :
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
You can’t perform that action at this time.
0 commit comments