ci: move iOS sample-app build to macos-26 and drop simulator-runtime download - #627
Open
mahmoud-elmorabea wants to merge 2 commits into
Open
ci: move iOS sample-app build to macos-26 and drop simulator-runtime download#627mahmoud-elmorabea wants to merge 2 commits into
mahmoud-elmorabea wants to merge 2 commits into
Conversation
Repins setup-ios to the macos-26 branch, which has no `xcodebuild -downloadPlatform iOS` step. That step was fetching iOS 26.3.1 on every run — a runtime not on the macos-15 image and never used by these jobs, at a measured median of 190s per invocation (~157 min/week here). The runner bump is required in the same commit: this call site passes no xcode-version, so it now picks up the action's new 26.6 default, and 26.6 is not installed on macos-15. deploy-npm.yml moves off macos-15 as well; it does not use setup-ios. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
Sample app builds 📱Below you will find the list of the latest versions of the sample apps. It's recommended to always download the latest builds of the sample apps to accurately test the pull request.
|
mahmoud-elmorabea
marked this pull request as ready for review
August 5, 2026 11:25
This job is named deploy-cocoapods but never invokes pod: it checks out, runs npm ci, and publishes to npm. Bumping it to macos-26 along with the real iOS jobs kept a Node publish on the org-capped macOS pool, which is the opposite of what this migration is for. Job id is left as-is deliberately; renaming it would change the check name. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Shahroz16
approved these changes
Aug 5, 2026
Shahroz16
left a comment
Contributor
There was a problem hiding this comment.
Same as others, Think the plan is to when customerio/mobile-ci-tools#13 merges, we replace all three temporary setup-ios@macos-26 references with setup-ios@main and rerun the affected macOS jobs before merging.?
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.
MBL-2224: Migrate iOS CI to
macos-26+ Xcode 26.6, and stop downloading simulator runtimes we already haveOur iOS jobs spend roughly 157 minutes of macOS runner time a week downloading a simulator runtime that is not on the image, is not needed, and is never used — these jobs produce device archives and touch no simulator at all.
Moves the macOS runner from 15 to 26 and repins the shared iOS setup to a version that does not perform that download.
🤖 Generated with Claude Code
Note
Low Risk
Runner and action pin changes only; npm deploy logic is unchanged and should be more reliable on Linux for Node/npm steps.
Overview
iOS sample app CI now runs on
macos-26instead ofmacos-15, and the sharedsetup-iosaction is repinned to@macos-26(replacing@MacOS-15+iOS-26) so setup aligns with the new runner image and avoids unnecessary simulator runtime downloads for device-only archive builds.The
deploy-cocoapodsjob indeploy-npm.ymlis moved frommacos-15toubuntu-latest, with comments noting the steps are checkout,npm ci, and npm publish only—no CocoaPods work—so it no longer consumes scarce macOS runners. The job id is unchanged to preserve the GitHub check name.Reviewed by Cursor Bugbot for commit 32bcc57. Bugbot is set up for automated code reviews on this repo. Configure here.