visionos.yml 516 B

12345678910111213141516171819202122
  1. name: Build (visionOS)
  2. # FIXME: CMake 3.28 is not yet available on the github runner
  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@v3
  13. - name: Configure
  14. run: |
  15. cmake -B build -GXcode -DCMAKE_SYSTEM_NAME=visionOS
  16. - name: Build
  17. run: |
  18. cmake --build build