From aa0594060dec14dd8f9abb88dd75b170a00ede5e Mon Sep 17 00:00:00 2001 From: Joerg Date: Sun, 10 Nov 2024 18:18:06 +0100 Subject: [PATCH] Restore lost clazy version printout, and only install clazy for the clazy runner --- .github/workflows/build-checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-checks.yml b/.github/workflows/build-checks.yml index ef706701f25..4ea6b5a182a 100644 --- a/.github/workflows/build-checks.yml +++ b/.github/workflows/build-checks.yml @@ -27,6 +27,7 @@ jobs: - name: Check out repository uses: actions/checkout@v4.2.1 - name: Add clazy PPA + if: matrix.name == 'clazy' # Ubuntu2404 comes with v1.11, which is too old for the Qt6.4 shipped with Ubuntu 24.04 run: | sudo add-apt-repository ppa:daschuer/clazy @@ -39,6 +40,7 @@ jobs: if: matrix.name == 'clazy' # Disable optimizations as workaround for Clang 9 bug: https://bugs.llvm.org/show_bug.cgi?id=45034 run: | + clazy --version cmake \ -DCMAKE_BUILD_TYPE=Debug \ -DWARNINGS_FATAL=ON \