[Windows] Add v143 ARM64 build tools to windows-2025-vs2026 - #14555
Open
v-davit-ioramashvili wants to merge 1 commit into
Open
[Windows] Add v143 ARM64 build tools to windows-2025-vs2026#14555v-davit-ioramashvili wants to merge 1 commit into
v-davit-ioramashvili wants to merge 1 commit into
Conversation
Install Microsoft.VisualStudio.Component.VC.14.44.17.14.ARM64 so the pinned v143 (MSVC 14.44 / VS 17.14) toolset supports ARM64 targets, matching windows-11-vs2026-arm. Previously only the x86.x64 flavor was present, so ARM64 builds with PlatformToolset v143 failed. Fixes actions#14552
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request fixes ARM64 cross-compilation failures on the windows-2025-vs2026 runner image by aligning the installed v143 (MSVC 14.44 / VS 17.14) toolset components with what’s available on the native windows-11-vs2026-arm64 image.
Changes:
- Add the missing Visual Studio component
Microsoft.VisualStudio.Component.VC.14.44.17.14.ARM64to thewindows-2025-vs2026toolset component list soPlatformToolset=v143ARM64 builds can succeed.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
15 tasks
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.
Description
Bug fix. Adds the v143 (MSVC 14.44 / VS 17.14) ARM64 toolset component to
windows-2025-vs2026.The pinned v143 toolset was installed only in the x86/x64 flavor (
VC.14.44.17.14.x86.x64), while the nativewindows-11-vs2026-armimage also ships the ARM64 flavor (VC.14.44.17.14.ARM64). As a result, ARM64 builds with PlatformToolsetv143failed onwindows-2025-vs2026. This adds the missing ARM64 component so cross-compilation matches the ARM image.Related issue:
Fixes #14552
Check list