Skip to content

Commit ecaaff5

Browse files
committed
Add circle.yml
1 parent 11c0370 commit ecaaff5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

circle.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
machine:
2+
xcode:
3+
version: "6.3.1"
4+
5+
test:
6+
override:
7+
- set -o pipefail &&
8+
xcodebuild
9+
-scheme "SwiftTask-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 "SwiftTask-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)