Skip to content

Commit 6e45f1d

Browse files
anton-plebanovichfreak4pc
authored andcommitted
- Collect Xcode logs
1 parent f54ba01 commit 6e45f1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
- Carthage
2727
- run:
2828
name: Test macOS
29-
command: set -o pipefail && xcodebuild test -scheme RxSwiftExt-macOS -workspace RxSwiftExt.xcworkspace -sdk macosx -destination "arch=x86_64" | xcpretty -c -r html --output $XCODE_TEST_REPORTS/macOS.html
29+
command: set -o pipefail && xcodebuild test -scheme RxSwiftExt-macOS -workspace RxSwiftExt.xcworkspace -sdk macosx -destination "arch=x86_64" | tee "${XCODE_TEST_REPORTS}/xcode_macOS.log" | xcpretty -c -r html --output $XCODE_TEST_REPORTS/macOS.html
3030
- run:
3131
name: Test iOS
32-
command: set -o pipefail && xcodebuild test -scheme RxSwiftExt-iOS -workspace RxSwiftExt.xcworkspace -sdk iphonesimulator -destination "name=iPhone X" | xcpretty -c -r html --output $XCODE_TEST_REPORTS/iOS.html
32+
command: set -o pipefail && xcodebuild test -scheme RxSwiftExt-iOS -workspace RxSwiftExt.xcworkspace -sdk iphonesimulator -destination "name=iPhone X" | tee "${XCODE_TEST_REPORTS}/xcode_iOS.log" | xcpretty -c -r html --output $XCODE_TEST_REPORTS/iOS.html
3333
- run:
3434
name: Test tvOS
35-
command: set -o pipefail && xcodebuild test -scheme RxSwiftExt-tvOS -workspace RxSwiftExt.xcworkspace -sdk appletvsimulator -destination "name=Apple TV 4K (at 1080p)" | xcpretty -c -r html --output $XCODE_TEST_REPORTS/tvOS.html
35+
command: set -o pipefail && xcodebuild test -scheme RxSwiftExt-tvOS -workspace RxSwiftExt.xcworkspace -sdk appletvsimulator -destination "name=Apple TV 4K (at 1080p)" | tee "${XCODE_TEST_REPORTS}/xcode_tvOS.log" | xcpretty -c -r html --output $XCODE_TEST_REPORTS/tvOS.html
3636
- run:
3737
name: Test SPM
3838
command: swift test

0 commit comments

Comments
 (0)