From 46132be3eb538c457b7df7a14d61041201522647 Mon Sep 17 00:00:00 2001 From: Haritha <73516759+HarithaVattikuti@users.noreply.github.com> Date: Thu, 12 Feb 2026 13:57:16 -0600 Subject: [PATCH] Test on local arm runners Add conditional setup for Ubuntu ARM configurations. --- .github/workflows/build-python-packages.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-python-packages.yml b/.github/workflows/build-python-packages.yml index 65feb35..61c8d1f 100644 --- a/.github/workflows/build-python-packages.yml +++ b/.github/workflows/build-python-packages.yml @@ -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;