From 5e8fae8948e7602fe37294abdec3fac8ed713796 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Thu, 6 Jun 2024 21:27:27 +0000 Subject: [PATCH] ZXXX: debug --- .github/workflows/ci-post-commit-analyzer-run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-post-commit-analyzer-run.py b/.github/workflows/ci-post-commit-analyzer-run.py index e5f52d3b2fa671..21a2cfdf53bd48 100644 --- a/.github/workflows/ci-post-commit-analyzer-run.py +++ b/.github/workflows/ci-post-commit-analyzer-run.py @@ -12,6 +12,8 @@ def run_analyzer(data): data["command"] + f" --analyze --analyzer-output html -o analyzer-results -Xclang -analyzer-config -Xclang max-nodes=75000" ) + if 'lib/Support' not in data['file']: + return print(command) subprocess.run(command, shell=True, check=True)