Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit cbcb684

Browse files
committed
test
1 parent d95d4e9 commit cbcb684

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

circle.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
machine:
2-
xcode:
3-
version: "7.0"
41
test:
52
override:
6-
- xctool -reporter pretty -reporter junit:$CIRCLE_TEST_REPORTS/xcode/results.xml -reporter plain:$CIRCLE_ARTIFACTS/xctool.log CODE_SIGNING_REQUIRED=NO -destination 'platform=iOS Simulator,OS=8.1,name=iPhone 6' -sdk iphonesimulator -workspace $GYM_WORKSPACE -scheme 'RefIOS' build test
3+
- set -o pipefail &&
4+
xcodebuild
5+
CODE_SIGNING_REQUIRED=NO
6+
CODE_SIGN_IDENTITY=
7+
PROVISIONING_PROFILE=
8+
-sdk iphonesimulator
9+
-destination 'platform=iOS Simulator,OS=8.1,name=iPhone 6'
10+
-workspace $GYM_WORKSPACE
11+
-scheme $GYM_SCHEME
12+
clean build test |
13+
tee $CIRCLE_ARTIFACTS/xcode_raw.log |
14+
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results.xml
15+

circle.yml.xctool

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
machine:
2+
xcode:
3+
version: "7.0"
4+
test:
5+
override:
6+
- xctool -reporter pretty -reporter junit:$CIRCLE_TEST_REPORTS/xcode/results.xml -reporter plain:$CIRCLE_ARTIFACTS/xctool.log CODE_SIGNING_REQUIRED=NO -destination 'platform=iOS Simulator,OS=8.1,name=iPhone 6' -sdk iphonesimulator -workspace $GYM_WORKSPACE -scheme 'RefIOS' build test

0 commit comments

Comments
 (0)