Test on local arm runners

Add conditional setup for Ubuntu ARM configurations.
This commit is contained in:
Haritha
2026-02-12 13:57:16 -06:00
committed by GitHub
parent e49da09661
commit 46132be3eb

View File

@@ -58,7 +58,14 @@ jobs:
"*macos*" { $platform = 'darwin' }
"*windows*" { $platform = 'win32'; if ($arch -eq "arm64" ) { $os = "${os}-arm" } }
}
if ($configuration -eq "ubuntu-22.04-arm") {
$os = "setup-actions-ubuntu-arm64-2-core"
}
elseif ($configuration -eq "ubuntu-24.04-arm") {
$os = "setup-actions-ubuntu24-arm64-2-core"
}
if ($buildMode -eq "freethreaded") {
if ([semver]"${{ inputs.VERSION }}" -lt [semver]"3.13.0") {
continue;