[clang] [llvm] [libclang/python][ci] Add release Clang Python Bindings CI workflow (PR #168234)

Jannick Kremer via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 15 20:44:37 PST 2025


================
@@ -0,0 +1,111 @@
+name: Release Clang Python Bindings
+
+permissions:
+  contents: read
+
+on:
+  push:
+    branches:
+      - main
+      - release/*
+    paths:
+      - .github/workflows/release-clang-pypi.yml
+      - 'clang/bindings/python/**'
+
+  pull_request:
+    paths:
+      - .github/workflows/release-clang-pypi.yml
+      - 'clang/bindings/python/**'
----------------
DeinAlptraum wrote:

Perhaps the paths here should also include the underlying C/C++ sources? I.e.
`'clang/tools/libclang/**'`
as we currently also do in the test CI workflow:
https://github.com/llvm/llvm-project/blob/main/.github/workflows/libclang-python-tests.yml

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


More information about the llvm-commits mailing list