Pin to windows-2022 runners #737
Merged
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.
Background
On September 30, 2024, GitHub changed the
windows-latest
runner label to point towindows-2025
(previouslywindows-2022
). The Windows Server 2025 runners removed all preinstalled Windows SDKs except the latest version.This change immediately broke all CI builds for the Windows Community Toolkit mainline repository. Our builds require two specific Windows SDK versions:
Upgrading these TFM versions would force all consumers to update, so we maintain these specific SDK requirements to preserve backward compatibility.
During the October 2, 2025 WCT sync, we identified a mitigation strategy:
windows-2022
to test if previous D drive disk space issues are resolvedwindows-2022-large
as a fallback/prep if standard runner has issuesProblem
Current Impact:
Root Cause:
windows-latest
now resolves towindows-2025
Related to: CommunityToolkit/Labs-Windows#741
Solution
Pin all Windows runner specifications to
windows-2022
:Changes:
windows-latest
→windows-2022
(2 jobs)windows-latest-large
→windows-2022
(2 jobs)Strategy:
windows-2022
for ALL jobs to verify if previous D drive disk space issues are resolvedwindows-2022-large
for build/package jobs (which specifically addresses out of disk space errors from missing D drive)Jobs Updated:
Testing:
-large
runnersRelated Issues
Related: CommunityToolkit/Labs-Windows#741