[llvm] 722b251 - [Github][CI] fix invalid path in clang-tidy helper (#160014)

via llvm-commits llvm-commits at lists.llvm.org
Sun Sep 21 14:53:25 PDT 2025


Author: Baranov Victor
Date: 2025-09-21T21:53:22Z
New Revision: 722b25114ac5356a57dc5901f3c457854c30f9e7

URL: https://github.com/llvm/llvm-project/commit/722b25114ac5356a57dc5901f3c457854c30f9e7
DIFF: https://github.com/llvm/llvm-project/commit/722b25114ac5356a57dc5901f3c457854c30f9e7.diff

LOG: [Github][CI] fix invalid path in clang-tidy helper (#160014)

This path was left untouched after refactoring made in
https://github.com/llvm/llvm-project/pull/159967 which broke clang-tidy
runner.

Added: 
    

Modified: 
    llvm/utils/git/code-lint-helper.py

Removed: 
    


################################################################################
diff  --git a/llvm/utils/git/code-lint-helper.py b/llvm/utils/git/code-lint-helper.py
index dd1f2ec37bf98..1232f3ab0d370 100755
--- a/llvm/utils/git/code-lint-helper.py
+++ b/llvm/utils/git/code-lint-helper.py
@@ -193,7 +193,7 @@ def run_clang_tidy(changed_files: List[str], args: LintArgs) -> Optional[str]:
         return None
 
     tidy_
diff _cmd = [
-        "code-lint-tools/clang-tools-extra/clang-tidy/tool/clang-tidy-
diff .py",
+        "clang-tools-extra/clang-tidy/tool/clang-tidy-
diff .py",
         "-path",
         args.build_path,
         "-p1",


        


More information about the llvm-commits mailing list