-
-
Notifications
You must be signed in to change notification settings - Fork 450
52 lines (49 loc) · 1.31 KB
/
visionos.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
name: visionos-jobs
on:
push:
branches: [ master ]
pull_request:
types: [ opened, synchronize ]
jobs:
build_with_15_OS:
name: "Xcode version 15.0.0, Target visionOS [arm64] Target SDK 1.0"
runs-on: macos-13
env:
PLATFORM: VISIONOS
DEPLOYMENT_TARGET: 1.0
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
continue-on-error: true
run: ./.github/build.sh
build_with_15_SIMULATOR64:
name: "Xcode version 15.0.0, Target visionOS Simulator [x86_64] Target SDK 1.0"
runs-on: macos-13
env:
PLATFORM: SIMULATOR64_VISIONOS
DEPLOYMENT_TARGET: 1.0
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
continue-on-error: true
run: ./.github/build.sh
build_with_15_SIMULATOR_VISIONOS:
name: "Xcode version 15.0.0, Target visionOS Simulator [arm64] Target SDK 1.0"
runs-on: macos-13
env:
PLATFORM: SIMULATOR_VISIONOS
DEPLOYMENT_TARGET: 1.0
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
continue-on-error: true
run: ./.github/build.sh