forked from trivago/Dobby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
30 lines (28 loc) · 859 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
machine:
xcode:
version: 8.0
dependencies:
override:
- script/bootstrap
test:
override:
- set -o pipefail &&
xcodebuild
-sdk macosx
-workspace Dobby.xcworkspace
-scheme Dobby-macOS
clean build test |
tee $CIRCLE_ARTIFACTS/xcode_raw_macos.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-macos.xml
- set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination 'platform=iOS Simulator,OS=10.0,name=iPhone 6s'
-workspace Dobby.xcworkspace
-scheme Dobby-iOS
clean build test |
tee $CIRCLE_ARTIFACTS/xcode_raw_ios.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-ios.xml