forked from flowkey/UIKit-cross-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
52 lines (48 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
jobs:
xcodebuild:
macos:
xcode: "12.5.0"
steps:
- checkout
- run: git submodule update --recursive --init
- run:
name: Test UIKit for macOS
command: set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=""
PROVISIONING_PROFILE=""
-sdk "macosx"
-scheme "UIKit"
build test |
xcpretty --color --report junit
- run:
name: Test iOSTestTarget
command: set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=""
PROVISIONING_PROFILE=""
-sdk "iphonesimulator"
-destination 'platform=iOS Simulator,OS=latest,name=iPhone 8 Plus'
-scheme "UIKit iOSTestTarget"
test |
xcpretty --color --report junit
- run:
name: Build demo app for iOS
command: set -o pipefail &&
xcodebuild
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=""
PROVISIONING_PROFILE=""
-sdk "iphonesimulator"
-destination 'platform=iOS Simulator,OS=latest,name=iPhone 8 Plus'
-scheme "DemoApp"
build |
xcpretty --color --report junit
path: ./samples/getting-started
workflows:
version: 2
uikit:
jobs:
- xcodebuild