We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11c0370 commit ecaaff5Copy full SHA for ecaaff5
circle.yml
@@ -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
15
16
+ CODE_SIGNING_REQUIRED=NO
17
+ CODE_SIGN_IDENTITY=
18
+ PROVISIONING_PROFILE=
19
+ -scheme "SwiftTask-iOS"
20
21
+ tee $CIRCLE_ARTIFACTS/xcode_raw-iOS.log |
22
+ xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-iOS.xml
0 commit comments