-
Notifications
You must be signed in to change notification settings - Fork 85
/
circle.yml
42 lines (39 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
machine:
xcode:
version: 9.0
environment:
XCODE_WORKSPACE: "AeroGearOAuth2.xcworkspace"
XCODE_SCHEME: "AeroGearOAuth2"
XCODE_SCHEME_TEST: "AeroGearOAuth2Tests"
SIMULATOR: "iPhone 7"
OS: "11.0.1"
general:
branches:
ignore:
- /FH-v.*/ # Ignore release branches
test:
override:
- set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination "platform=iOS Simulator,name=${SIMULATOR},OS=${OS}"
-workspace $XCODE_WORKSPACE
-scheme $XCODE_SCHEME
clean build |
tee $CIRCLE_ARTIFACTS/xcode_raw.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results.xml
- set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination "platform=iOS Simulator,name=${SIMULATOR},OS=${OS}"
-workspace $XCODE_WORKSPACE
-scheme $XCODE_SCHEME_TEST
clean build test |
tee $CIRCLE_ARTIFACTS/xcode_raw.log |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results.xml