ci: Don't validate clang-tidy

Turns out to be very pointless, and usually doubles or triples the overall build time with no actual gain.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2023-02-28 04:57:13 +01:00
parent 04e29a94b9
commit 587cefe5ce
1 changed files with 0 additions and 9 deletions

View File

@ -407,12 +407,3 @@ jobs:
git --no-pager diff --patch --minimal HEAD --
git update-index --refresh
git diff-index --quiet HEAD --
- name: "Validate clang-tidy"
continue-on-error: true
shell: bash
run: |
cmake --build "${{ github.workspace }}/build/debug" --config Debug --target clang-tidy
cmake --build "${{ github.workspace }}/build/release" --config RelWithDebInfo --target clang-tidy
git --no-pager diff --patch --minimal HEAD --
git update-index --refresh
git diff-index --quiet HEAD --