From 812b8e296a40d7aa8b8d6c6e31050b82597a14e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Mon, 4 Nov 2024 23:00:10 +0100 Subject: [PATCH] download occular version --- .github/workflows/build-checks.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-checks.yml b/.github/workflows/build-checks.yml index d29245dd2c9..c4f6db09f63 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 + sudo dpkg -i clazy_1.12-2_amd64.deb clazy --version - name: Create build directory run: mkdir build