2023-07-24 00:11:09 -06:00
|
|
|
name: Build (visionOS)
|
|
|
|
|
2023-08-09 11:17:20 -06:00
|
|
|
# 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
|