From 07a485a535883c9a15f03a6f15555507bd4229c2 Mon Sep 17 00:00:00 2001 From: huntedbytheirs Date: Tue, 4 Aug 2026 14:17:52 -0400 Subject: [PATCH] fix: install CMake 3.28 in CI (runner has 3.18, we need 3.20+) Download official CMake binary from Kitware releases instead of relying on the distro package manager which provides an older version. --- .gitea/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ac98365..b4dfdf7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,7 +15,12 @@ jobs: - name: Install dependencies run: | apt-get update -qq - apt-get install -y -qq clang cmake ninja-build + apt-get install -y -qq clang ninja-build curl + + - name: Install CMake 3.28 + run: | + curl -sL https://github.com/Kitware/CMake/releases/download/v3.28.6/cmake-3.28.6-linux-x86_64.tar.gz | tar xz -C /usr/local --strip-components=1 + cmake --version - name: Build kappa run: |