Revert "[android] Enable CoreCLR runtime pack production for android-arm (#127225)"#127547
Merged
simonrozsival merged 1 commit intodotnet:mainfrom Apr 29, 2026
Conversation
…arm (dotnet#127225)" This reverts commit 4fed13d. android-arm is crashing in CI with SIGSEGV in System.DateTime.get_Now(). See dotnet#127500. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR reverts the earlier enablement of producing the CoreCLR runtime pack for android-arm (armeabi-v7a), because android-arm is currently crashing in CI (SIGSEGV in System.DateTime.get_Now(); see #127500). The change restores the previous state by disabling CoreCLR support for Android ARM32 and removing android_arm from CoreCLR Android CI lanes / Helix queue wiring.
Changes:
- Re-block CoreCLR support for Android 32-bit (
armandx86) ineng/Subsets.props. - Remove
android_armfrom the CoreCLR Android platform lists in the main runtime pipeline and extra-platforms Android pipeline. - Remove the CoreCLR Helix queue mapping for
android_arm.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| eng/Subsets.props | Reintroduces CoreCLR support gating to exclude Android 32-bit architectures. |
| eng/pipelines/runtime.yml | Removes android_arm from CoreCLR Android scenarios (keeps Mono Android lanes intact). |
| eng/pipelines/extra-platforms/runtime-extra-platforms-android.yml | Removes android_arm from the CoreCLR Android extra-platforms job. |
| eng/pipelines/coreclr/templates/helix-queues-setup.yml | Removes CoreCLR Helix queue mapping for android_arm. |
Contributor
|
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
mangod9
approved these changes
Apr 29, 2026
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.
Reverts #127225
Closes #127500
android-arm is crashing in CI with
SIGSEGVinSystem.DateTime.get_Now(). See #127500.Reverting while the underlying crash is investigated.