From 135c788acb00e1800f842bc5db01aee0883e116f Mon Sep 17 00:00:00 2001 From: Adam Lickel Date: Wed, 25 Sep 2024 17:02:00 -0700 Subject: [PATCH] Explicit Xcode version and no visionOS --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 408d02c..87cd6ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: - tvOS - watchOS - macOS - - visionOS + #- visionOS # These runtimes are missing? runs-on: macos-latest steps: - name: Checkout @@ -29,7 +29,8 @@ jobs: with: platform: ${{ matrix.platform }} scheme: FetchRequests-${{ matrix.platform }} - swift: ~6.0 + #swift: ~6.0 + xcode: '16.0.0' # It's currently preferring 16.1 beta action: test code-coverage: true - name: Code Coverage @@ -56,6 +57,7 @@ jobs: with: platform: iOS scheme: iOS Example - swift: ~6.0 + #swift: ~6.0 + xcode: '16.0.0' # It's currently preferring 16.1 beta action: build working-directory: Example