[llvm] [GHA] Disable the ids-check workflow (PR #178170)
Fabrice de Gans via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 27 03:53:14 PST 2026
https://github.com/Steelskin created https://github.com/llvm/llvm-project/pull/178170
The workflow is too disruptive as it is because we are still missing too many `LLVM_ABI` annotations. Disable it for the time being.
See #109483 for details.
>From 2d2a6ab4c9c1d8fd7c1281d44c02edcea18d4f05 Mon Sep 17 00:00:00 2001
From: Fabrice de Gans <fabrice at thebrowser.company>
Date: Tue, 27 Jan 2026 12:51:35 +0100
Subject: [PATCH] [GHA] Disable the ids-check workflow
The workflow is too disruptive as it is because we are still missing too
many `LLVM_ABI` annotations. Disable it for the time being.
See #109483 for details.
---
.github/workflows/ids-check.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ids-check.yml b/.github/workflows/ids-check.yml
index 68f38d6212ff8..0fdf33a983a1b 100644
--- a/.github/workflows/ids-check.yml
+++ b/.github/workflows/ids-check.yml
@@ -1,6 +1,10 @@
name: "Check LLVM ABI annotations"
+
+# TODO(https://github.com/llvm/llvm-project/issues/109483): Re-enable on pull
+# requests once the workflow is less diruptive.
on:
- pull_request:
+ # pull_request:
+ workflow_dispatch:
permissions:
contents: read
More information about the llvm-commits
mailing list