Enable CoreCLR iOS and MacCatalyst device tests#33015
Merged
kotlarmilos merged 5 commits intodotnet:net11.0from Dec 5, 2025
Merged
Enable CoreCLR iOS and MacCatalyst device tests#33015kotlarmilos merged 5 commits intodotnet:net11.0from
kotlarmilos merged 5 commits intodotnet:net11.0from
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR enables CoreCLR device tests for iOS and MacCatalyst platforms, complementing the existing Android CoreCLR device test infrastructure. The implementation correctly mirrors the Android pattern by adding useCoreClr parameter support and the /p:UseMonoRuntime=false MSBuild flag when CoreCLR is enabled.
Key Changes
- Added CoreCLR test configurations for iOS and MacCatalyst in the pipeline YAML files
- Extended iOS and Catalyst Cake build scripts to support the
useCoreClrparameter - Updated binlog naming to differentiate between Mono and CoreCLR builds
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| eng/pipelines/common/device-tests.yml | Added duplicate iOS and Catalyst platform test blocks with useCoreClr: true parameter, mirroring the existing Android CoreCLR pattern |
| eng/pipelines/common/device-tests-steps.yml | Updated comment to include iOS and Catalyst platforms alongside Android |
| eng/pipelines/common/device-tests-jobs.yml | Updated comment to include iOS and Catalyst platforms alongside Android |
| eng/devices/ios.cake | Added useCoreClr parameter, modified ExecuteBuild to accept the parameter, added runtime-specific binlog naming, and conditionally appends /p:UseMonoRuntime=false |
| eng/devices/catalyst.cake | Added useCoreClr parameter, modified ExecuteBuild to accept the parameter, added runtime-specific binlog naming, and conditionally appends /p:UseMonoRuntime=false |
rolfbjarne
previously approved these changes
Dec 5, 2025
Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
kotlarmilos
commented
Dec 5, 2025
rolfbjarne
approved these changes
Dec 5, 2025
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
This PR enables CoreCLR iOS and MacCatalyst device tests, mirroring the existing Android CoreCLR device tests implementation.
Changes: