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

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 15 01:52:23 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
----------------
nikic wrote:

Can you provide an example where ids will produce different output when targeting Linux and Windows?

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


More information about the llvm-commits mailing list