diff --git a/.github/workflows/build-checks.yml b/.github/workflows/build-checks.yml index d29245dd2c9..14296e1fd52 100644 --- a/.github/workflows/build-checks.yml +++ b/.github/workflows/build-checks.yml @@ -32,15 +32,8 @@ jobs: if: matrix.name == 'clazy' # Ubuntu2404 comes with v1.11, which is too old for the Qt6.4 shipped with Ubuntu 2404 run: | - sudo apt-get update - sudo apt-get install -y llvm-dev libclang-dev clang - git clone --branch v1.12 --single-branch https://github.com/KDE/clazy.git - cd clazy - mkdir build - cd build - cmake .. - make -j$(nproc) - sudo make install + wget http://mirrors.kernel.org/ubuntu/pool/universe/c/clazy/clazy_1.12-2_amd64.deb + dpkg -i clazy_1.12-2_amd64.deb clazy --version - name: Create build directory run: mkdir build