From e64ab0ee523f81aa851c10ca09b18684abaeb211 Mon Sep 17 00:00:00 2001 From: Liam Nichols Date: Thu, 8 Feb 2024 16:21:30 +0000 Subject: [PATCH] Build & Test with Xcode 15.2 on macOS 14 (#43) --- .github/workflows/build.yml | 4 ++-- .github/workflows/tests.yml | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf18d8a..a4c77ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,9 +9,9 @@ on: jobs: build-artifactbundle: name: Build Executable - runs-on: macos-13 + runs-on: macos-14 env: - DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer steps: - name: Checkout Repo uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 19eaaee..e542eb9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,9 +11,9 @@ on: jobs: validate-spi-manifest: name: Validate SPI Manifest - runs-on: macos-13 + runs-on: macos-14 env: - DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer VALIDATE_SPI_MANIFEST: YES steps: - name: Checkout Repo @@ -25,10 +25,12 @@ jobs: strategy: fail-fast: false matrix: - xcode: ["15.0"] + xcode: ["15.0", "15.2"] include: - xcode: "15.0" macos: macOS-13 + - xcode: "15.2" + macos: macOS-14 runs-on: ${{ matrix.macos }} env: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer