[llvm] workflows/release-binaries: Use free arm Windows runners for PRs (PR #181477)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 14 05:25:40 PST 2026
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/181477
We are running low on budget, so we need to disable this temporarily.
>From da7849d53f138aef9f7836d7c3bccc69a3725fd1 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sat, 14 Feb 2026 05:22:02 -0800
Subject: [PATCH] workflows/release-binaries: Use free arm Windows runners for
PRs
We are running low on budget, so we need to disable this temporarily.
---
.github/workflows/release-binaries.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 1de66bdfe6f02..962bd83d7c9ff 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -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" ]; then
+ build_runs_on="${{ inputs.runs-on }}"
+ else
+ build_runs_on="windows-11-arm-16core"
+ fi
test_runs_on=$build_runs_on
;;
macos-14)
More information about the llvm-commits
mailing list