From 587cefe5cec0d2273694799c4a9df26a1f60f761 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Tue, 28 Feb 2023 04:57:13 +0100 Subject: [PATCH] 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. --- .github/workflows/main.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea8b081..4786257 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 --