-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Remove Raspbian 10 #115071
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Raspbian 10 #115071
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR removes support for Raspbian 10 from various parts of the codebase as part of deprecating this platform.
- Removed the IsRaspbian10 property and its related test ActiveIssue from MsQuicPlatformDetectionTests.cs and PlatformDetection.Unix.cs.
- Eliminated pipeline configurations and documentation related to linux_armv6 and Raspbian 10.
Reviewed Changes
Copilot reviewed 7 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicPlatformDetectionTests.cs | Removed ActiveIssue referencing IsRaspbian10 from tests. |
| src/libraries/Common/tests/TestUtilities/System/PlatformDetection.Unix.cs | Deleted the IsRaspbian10 property. |
| eng/pipelines/runtime-community.yml | Removed commented armv6 build steps related to Raspbian 10. |
| eng/pipelines/libraries/helix-queues-setup.yml | Removed Linux armv6 configuration referencing Raspbian 10. |
| eng/pipelines/common/templates/pipeline-with-resources.yml | Removed linux_armv6 environment configuration. |
| eng/pipelines/common/platform-matrix.yml | Removed Linux armv6 matrix templates. |
| docs/workflow/building/coreclr/linux-instructions.md | Removed documentation entry for Ubuntu 20.04 (armv6/Raspbian 10). |
Files not reviewed (2)
- Directory.Build.props: Language not supported
- eng/Subsets.props: Language not supported
| } | ||
| } | ||
|
|
||
| [ActiveIssue("https://github.com/dotnet/runtime/issues/82154", typeof(PlatformDetection), nameof(PlatformDetection.IsRaspbian10), nameof(PlatformDetection.IsArmv6Process), nameof(PlatformDetection.IsInContainer))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IsArmv6Process can be deleted too
|
Should this go to |
|
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
|
Fair. I'll do that. |
Fixes #115029 (comment)