-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (45 loc) · 1.43 KB
/
build.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
53
name: Build Project
on:
push:
pull_request:
jobs:
build:
runs-on: macos-15
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Apple Xcode Select
uses: BoundfoxStudios/action-xcode-select@v1
with:
version: latest
beta: false
- name: Build iOS
uses: sersoft-gmbh/xcodebuild-action@v3
with:
project: Example/HierarchyResponderExample.xcodeproj
workspace:
scheme: HierarchyResponderExample
destination: generic/platform=iOS Simulator
action: build
- name: Build Mac
uses: sersoft-gmbh/xcodebuild-action@v3
with:
project: Example/HierarchyResponderExample.xcodeproj
scheme: HierarchyResponderExample
destination: generic/platform=macOS
action: build
build-settings: CODE_SIGNING_ALLOWED=NO CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
- name: Build Watch
uses: sersoft-gmbh/xcodebuild-action@v3
with:
project: Example/HierarchyResponderExample.xcodeproj
scheme: HierarchyResponderExampleWatch
destination: generic/platform=watchOS Simulator
action: build
- name: Build Vision
uses: sersoft-gmbh/xcodebuild-action@v3
with:
project: Example/HierarchyResponderExample.xcodeproj
scheme: HierarchyResponderExample
destination: generic/platform=visionOS Simulator
action: build