SDL/.github/workflows/visionos.yml.disabled

23 lines
526 B
Plaintext
Raw Normal View History

2023-07-24 00:11:09 -06:00
name: Build (visionOS)
# FIXME: Enable this workflow once CMake 3.28 becomes available on GitHub
on: [push, pull_request]
2023-07-24 00:11:09 -06:00
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
Build:
name: visionOS
runs-on: macos-latest
steps:
2024-01-25 18:33:20 -07:00
- uses: actions/checkout@v4
2023-07-24 00:11:09 -06:00
- name: Configure
run: |
cmake -B build -GXcode -DCMAKE_SYSTEM_NAME=visionOS
- name: Build
run: |
cmake --build build