From a34f3a35f92598242888982014e3d8b36c763b4f Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Wed, 1 May 2024 00:15:48 +0200 Subject: [PATCH] ci: Disable cppcheck on distcheck There's no real added value in running cppcheck in the distributed sources as well, and it effectively doubles check times for virtually no gain. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd6358da1..8ca9b6cf7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -191,7 +191,7 @@ jobs: - name: Run distcheck run: | cd _build - make -j ${{ env.JOBS }} distcheck DISTCHECK_CONFIGURE_FLAGS="${{ env.CONFIGURE_FLAGS }}"; + make -j ${{ env.JOBS }} distcheck DISTCHECK_CONFIGURE_FLAGS="${{ env.CONFIGURE_FLAGS }} --disable-cppcheck"; - name: ccache statistics if: ${{ env.DEBUG == '1' }}