Skip to content

Updated Github Actions definitions #39

Updated Github Actions definitions

Updated Github Actions definitions #39

Workflow file for this run

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