[ci] Fix find simulator with new Xcode on the machine#31586
Merged
[ci] Fix find simulator with new Xcode on the machine#31586
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR fixes iOS simulator selection issues in CI pipelines when newer Xcode versions are present but older simulators need to be used. The change addresses compatibility problems where devices like iPhone XS may no longer be supported in newer Xcode versions.
Key changes:
- Replaces dynamic 'latest' iOS version with specific '18.4' version for consistent simulator selection
- Removes compatibility test parameters and pool configurations that are no longer needed
- Removes architecture-specific demands from macOS pool configurations
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| eng/pipelines/ui-tests.yml | Updates iOS versions from 'latest' to '18.4', removes compatibility test parameters and macOS architecture demands |
| eng/pipelines/device-tests.yml | Changes iOS versions from 'latest' to 'simulator-18.4', removes Android API level 28, and trailing whitespace |
rmarinho
added a commit
that referenced
this pull request
Sep 15, 2025
* Try to specify the emulator again * Fix uitests * Just version number * We need x64 to find app for catalyst tests * We need x64 for now # Conflicts: # eng/pipelines/device-tests.yml # eng/pipelines/ui-tests.yml
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description of Change
Seems we found that if we have a new XCOde but want to use a old simulator from the Xcode we selected that doesn t work sometimes, special if the device is stop being supported like iPHone XS.
SO lets specify always the value of the simulator to start.