[ci] Enable CoreCLR iOS device tests on Helix#33221
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR enables CoreCLR device testing on iOS and MacCatalyst platforms in addition to the existing Android support. The changes expand the Helix test pipeline to build and execute tests across all three mobile platforms using CoreCLR runtime.
Key changes:
- Removed build parameters that previously excluded iOS and MacCatalyst target frameworks from CoreCLR device test builds
- Added dedicated test stages for iOS and MacCatalyst with appropriate Helix configuration
- Updated stage display names to reflect multi-platform support
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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
This pull request expands the device test pipeline to add support for running CoreCLR Helix tests on iOS and MacCatalyst, in addition to Android. The changes update the build and test stages to include these new platforms and adjust build parameters accordingly.
Pipeline expansion for CoreCLR device tests:
devicetests_build_coreclrstage to reflect that it now builds for iOS and MacCatalyst in addition to Android, as shown in itsdisplayName./p:IncludeIosTargetFrameworks=falseand/p:IncludeMacCatalystTargetFrameworks=falseso these platforms are now built.New test stages for additional platforms:
devicetests_ios_coreclrstage to run CoreCLR Helix device tests on iOS, including downloading build artifacts and sending tests to Helix with appropriate parameters.devicetests_catalyst_coreclrstage to run CoreCLR Helix device tests on MacCatalyst, with similar steps as the iOS stage.