Added platform option MAC_CATALYST_UNIVERSAL #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |