-
-
Notifications
You must be signed in to change notification settings - Fork 455
38 lines (35 loc) · 932 Bytes
/
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
name: visionos-jobs
on:
push:
branches: [ master ]
pull_request:
types: [ opened, synchronize ]
jobs:
build_with_15_4_OS:
name: "Xcode version 15.4, Target visionOS [arm64] Target SDK 1.2"
runs-on: macos-14
env:
PLATFORM: VISIONOS
DEPLOYMENT_TARGET: 1.2
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.4'
- name: Build
continue-on-error: true
run: ./.github/build.sh
build_with_latest_SIMULATOR_VISIONOS:
name: "Latest Xcode, Target visionOS Simulator [arm64] Target SDK 1.2"
runs-on: macos-latest
env:
PLATFORM: SIMULATOR_VISIONOS
DEPLOYMENT_TARGET: 1.2
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 'latest-stable'
- name: Build
continue-on-error: true
run: ./.github/build.sh