Use Xcode 26.4.1 in CI#338
Merged
Merged
Conversation
The TracksDemoTests target only contains template app-hosted tests. Running it launches TracksDemo.app during the iOS lane, which adds demo bootstrap requirements without useful coverage. --- Generated with the help of Codex, https://openai.com/codex Co-Authored-By: Codex <noreply@openai.com>
CI creates the demo Secrets.swift from the sample file, which leaves the Sentry DSN empty. Use a valid dummy DSN so crash logging initialization does not abort demo app bootstrap. --- Generated with the help of Codex, https://openai.com/codex Co-Authored-By: Codex <noreply@openai.com>
Xcode 26.4.1 exposes mismatched SDK versions through xcodebuild and simctl, which breaks fastlane's automatic simulator detection. Pass the simulator destination directly to avoid that fastlane lookup. --- Generated with the help of Codex, https://openai.com/codex Co-Authored-By: Codex <noreply@openai.com>
Exercise fastlane simulator detection with the current iPhone simulator instead of bypassing scan with an explicit destination. --- Generated with the help of Codex CLI, https://openai.com/codex Co-Authored-By: Codex <noreply@openai.com>
This reverts commit bfbea36.
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.
When I approved #336 , I noticed the test failure. At first, I thought it was a flaky test but upon further investigation it turned out to be due to the tests for the demo app sneaking into the test plan run in CI for iOS.
It unnecessary to run those tests, given that: 1) the demo app is for internal dev only and 2) they are template only.
This PR restores the iOS test plan to how it was prior, and updates the tooling to latest Xcode 26.4.1 along the way.
CHANGELOG.mdif necessary. - N.A.