Switch to Xcode 26.0

This commit is contained in:
Max Radermacher 2025-08-27 18:08:47 -05:00 committed by GitHub
parent 4bed84b2cc
commit b5305318bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 11 additions and 7 deletions

View File

@ -18,7 +18,7 @@ concurrency:
env:
# Path format pulled from https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md#xcode
DEVELOPER_DIR: /Applications/Xcode_16.4.app
DEVELOPER_DIR: /Applications/Xcode_26.0.app
jobs:
build_and_test:
@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
# Add additional Xcode versions here if necessary.
xcode: ["Xcode_16.4"]
xcode: ["Xcode_26.0", "Xcode_16.4"]
steps:
- name: Set Xcode version
@ -41,9 +41,15 @@ jobs:
- uses: actions/checkout@v4
- name: Check Xcode version
if: ${{ matrix.xcode != 'Xcode_16.4' }}
run: |
Scripts/check_xcode_version.py
- name: Download Metal toolchain
if: ${{ matrix.xcode == 'Xcode_26.0' }}
run: |
xcodebuild -downloadComponent MetalToolchain
- uses: ./.github/actions/clone-everything
with:
access-token: ${{ secrets.ACCESS_TOKEN }}

View File

@ -1 +1 @@
Xcode 16.4
Xcode 26.0

View File

@ -2,7 +2,5 @@
set -eux
if [ "${CI_WORKFLOW-}" = "Nightly (Xcode 26)" ]; then
: "Downloading Metal Toolchain for Xcode 26"
xcodebuild -downloadComponent MetalToolchain
fi
: "Downloading Metal Toolchain"
xcodebuild -downloadComponent MetalToolchain