[llvm] [ci] Add ids workflow for checking llvm apis have been annotated with LLVM_ABI (PR #128370)

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 12:10:11 PDT 2025


================
@@ -0,0 +1,76 @@
+name: ids-check
+on:
+  pull_request:
+    branches: [main]
+  push:
+    branches: [main]
+
+permissions:
+  contents: read
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
+  cancel-in-progress: true
+
+jobs:
+  build:
+    name: ids-check
+    runs-on: ubuntu-24.04
+    strategy:
+      fail-fast: false
----------------
boomanaiden154 wrote:

Why do we not want to fail fast?

https://github.com/llvm/llvm-project/pull/128370


More information about the llvm-commits mailing list