From 5f562d9324d1db33d9eeb570866243c53f7a56d3 Mon Sep 17 00:00:00 2001 From: Zorg Date: Sun, 10 Nov 2024 20:45:44 -0800 Subject: [PATCH] Bump CI runner to Xcode 16.1 / macOS 15 --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/create-draft-release.yml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 890d1ff88..669f4f0fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,18 +10,18 @@ jobs: build: strategy: matrix: - xcode: ['xcode16', 'xcode15.4'] + xcode: ['xcode16.1', 'xcode15.4'] include: - xcode: 'xcode15.4' xcode-path: '/Applications/Xcode_15.4.app/Contents/Developer' - upload-dist: true - run-analyzer: true - macos: 'macos-14' - - xcode: 'xcode16' - xcode-path: '/Applications/Xcode_16.app' upload-dist: false run-analyzer: false macos: 'macos-14' + - xcode: 'xcode16.1' + xcode-path: '/Applications/Xcode_16.1.app' + upload-dist: true + run-analyzer: true + macos: 'macos-15' name: Build and Test Sparkle runs-on: ${{ matrix.macos }} diff --git a/.github/workflows/create-draft-release.yml b/.github/workflows/create-draft-release.yml index 8a3e35d68..e0a9a28fb 100644 --- a/.github/workflows/create-draft-release.yml +++ b/.github/workflows/create-draft-release.yml @@ -2,7 +2,7 @@ name: "Create Draft Release" env: BUILDDIR: "build" - DEVELOPER_DIR: "/Applications/Xcode_15.4.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_16.1.app/Contents/Developer" on: workflow_dispatch: @@ -29,7 +29,7 @@ concurrency: jobs: release: name: "Publish binaries for release" - runs-on: macos-14 + runs-on: macos-15 steps: - name: "Checkout sources"