Update CI to Xcode 26.6 and Ruby 3.4.9#4072
Open
wojtekn wants to merge 1 commit into
Open
Conversation
Ruby 3.4.9 fixes the bundle install failure with native-code gems (Nokogiri) present since Xcode 26.4. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Collaborator
📊 Performance Test ResultsComparing eb53af1 vs trunk app-size
site-editor
site-startup
Results are median values from multiple test runs. Legend: 🟢 Improvement (faster) | 🔴 Regression (slower) | ⚪ No change (<50ms diff) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related issues
How AI was used in this PR
Claude Code located how CI resolves the Xcode/Ruby versions (the repo uses the
IMAGE_ID-from-.xcode-versionapproach via.buildkite/shared-pipeline-vars), confirmed no hardcoded image IDs or simulator references needed updating, and made the two version-file edits. I reviewed the changes.Proposed Changes
Bumps CI to the newly available Xcode 26.6 image and moves Ruby to the new default 3.4.9.
IMAGE_ID: $IMAGE_IDapproach, updating.xcode-versionis sufficient —.buildkite/shared-pipeline-varsderivesIMAGE_ID=xcode-26.6from it, and all pipeline files pick it up.bundle installfailure when building native-code gems such as Nokogiri, which has been present since Xcode 26.4 (https://bugs.ruby-lang.org/issues/21629). Ruby is only used here for Fastlane release tooling.Gemfile.lockhas noRUBY VERSIONpin, so no lockfile change is required. Both Buildkite and GitHub Actions (ruby/setup-rubywithbundler-cache: true) read.ruby-versionautomatically.No user-facing changes — CI/tooling only.
Testing Instructions
xcode-26.6image and succeed, including the Fastlane helper tests and PHP CLI binary build (which runsbundle install).Pre-merge Checklist