From 9eea2f8c0ab0021f00c489a38e8013e37a273216 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 4 Nov 2023 14:36:01 +0100 Subject: [PATCH] chore: Add a 10m timeout to the clang-tidy CI job (#4939) --- .clang-tidy | 3 +++ .github/workflows/build.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 5d3a0d09..658f6613 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -63,3 +63,6 @@ CheckOptions: # Lua state - key: readability-identifier-naming.LocalPointerIgnoredRegexp value: ^L$ + + - key: misc-const-correctness.AnalyzeValues + value: false diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38321ab5..30870797 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -331,6 +331,7 @@ jobs: - name: clang-tidy review if: matrix.clang-tidy-review && github.event_name == 'pull_request' + timeout-minutes: 10 uses: ZedThree/clang-tidy-review@v0.14.0 with: build_dir: build-clang-tidy