workflows/release-binaries: Use free arm Windows runners for PRs (#181477)

We are running low on budget, so we need to disable this temporarily.
This commit is contained in:
Tom Stellard 2026-02-14 05:50:49 -08:00 committed by GitHub
parent 6e23353c39
commit 87b9805f6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,7 +176,11 @@ jobs:
test_runs_on=$build_runs_on
;;
windows-11-arm)
build_runs_on="windows-11-arm-16core"
if [ "$GITHUB_EVENT_NAME" = "pull_request" ] || [ "$GITHUB_EVENT_NAME" = "schedule" ]; then
build_runs_on="${{ inputs.runs-on }}"
else
build_runs_on="windows-11-arm-16core"
fi
test_runs_on=$build_runs_on
;;
macos-14)