forked from trivago/Heimdallr.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
32 lines (30 loc) · 958 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
31
32
machine:
xcode:
version: 8.2
dependencies:
override:
- script/bootstrap
test:
override:
- set -o pipefail &&
xcodebuild
-sdk macosx
-workspace Heimdallr.xcworkspace
-scheme Heimdallr-macOS
-configuration Debug
clean test |
tee $CIRCLE_ARTIFACTS/xcode_raw_heimdallr_macos.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/heimdallr-mac-results.xml
- set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination 'platform=iOS Simulator,OS=10.2,name=iPhone 7'
-workspace Heimdallr.xcworkspace
-scheme Heimdallr-iOS
-configuration Debug
clean test |
tee $CIRCLE_ARTIFACTS/xcode_raw_heimdallr_ios.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/heimdallr-ios-results.xml