[llvm] [CI] Skip Running Prmeerge Advisor on AArch64 (PR #168404)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 17 09:09:22 PST 2025
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/168404
They were still running because the conditional was not correct. This patch fixes that so they do not interefere with the results of the job.
>From b95a00e9d76b7d4e107ba2f2f46c361ecf5e6ea1 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Mon, 17 Nov 2025 17:06:40 +0000
Subject: [PATCH] [CI] Skip Running Prmeerge Advisor on AArch64
They were still running because the conditional was not correct. This
patch fixes that so they do not interefere with the results of the job.
---
.github/workflows/premerge.yaml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index 02a6f3b868d85..127ef9536e0ae 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -57,6 +57,9 @@ jobs:
# container and non-container jobs.
shell: bash
steps:
+ - name: Print platform
+ run: |
+ python3 -c "import platform; print(platform.machine())"
- name: Checkout LLVM
uses: actions/checkout at 08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
More information about the llvm-commits
mailing list