visionos.yml.disabled 526 B

12345678910111213141516171819202122
  1. name: Build (visionOS)
  2. # FIXME: Enable this workflow once CMake 3.28 becomes available on GitHub
  3. on: [push, pull_request]
  4. concurrency:
  5. group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
  6. cancel-in-progress: true
  7. jobs:
  8. Build:
  9. name: visionOS
  10. runs-on: macos-latest
  11. steps:
  12. - uses: actions/checkout@v4
  13. - name: Configure
  14. run: |
  15. cmake -B build -GXcode -DCMAKE_SYSTEM_NAME=visionOS
  16. - name: Build
  17. run: |
  18. cmake --build build