Summary
The Windows 11 arm64 runner (windows-11-arm) is defined in .github/json_matrices/os-matrix.json but has an empty profiles array, meaning it never runs in any CI profile. This leaves the aarch64-pc-windows-msvc target completely untested.
Current state
{
"OS": "windows",
"NAMED_OS": "windows",
"RUNNER": "windows-11-arm",
"ARCH": "arm64",
"TARGET": "aarch64-pc-windows-msvc",
"profiles": []
}
Proposed change
Add standard and full to the profiles array:
{
"OS": "windows",
"NAMED_OS": "windows",
"RUNNER": "windows-11-arm",
"ARCH": "arm64",
"TARGET": "aarch64-pc-windows-msvc",
"profiles": ["standard", "full"]
}
Additional Information
- GitHub announced Windows on Arm runner availability for all public repos in April 2025 (public preview).
Summary
The Windows 11 arm64 runner (
windows-11-arm) is defined in.github/json_matrices/os-matrix.jsonbut has an emptyprofilesarray, meaning it never runs in any CI profile. This leaves theaarch64-pc-windows-msvctarget completely untested.Current state
{ "OS": "windows", "NAMED_OS": "windows", "RUNNER": "windows-11-arm", "ARCH": "arm64", "TARGET": "aarch64-pc-windows-msvc", "profiles": [] }Proposed change
Add
standardandfullto the profiles array:{ "OS": "windows", "NAMED_OS": "windows", "RUNNER": "windows-11-arm", "ARCH": "arm64", "TARGET": "aarch64-pc-windows-msvc", "profiles": ["standard", "full"] }Additional Information