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

Saleem Abdulrasool via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 11 10:01:10 PDT 2025


================
@@ -0,0 +1,95 @@
+name: ids-check
+on:
+  pull_request:
+    types:
+      - opened
+      - synchronize
+      - reopened
+      - closed
+  push:
+    branches:
+      - 'main'
+      - 'release/**'
+
+permissions:
+  contents: read
+
+concurrency:
+  group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
+  cancel-in-progress: true
+
+jobs:
+  build:
+    if: github.repository_owner == 'llvm'
+    name: ids-check
+    runs-on: ubuntu-24.04
----------------
compnerd wrote:

I don't think that I have an example off hand, I remember that we did find a few different cases of the handling. But, I suppose that some coverage is better than none.

DLL Storage and visibility are subtly different and while building on Linux may be easier, I expect that we will need to do more reverts for the Linux based pre-merge tests than with the Windows based pre-merge tests.

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


More information about the llvm-commits mailing list