From 79e6f07863547122047a5bd9054fa5ac08fd1155 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 25 Apr 2025 12:23:44 +0100 Subject: [PATCH] fix: Pin cmake version in ci Dockerfile (#2036) Fix: https://github.com/XRPLF/clio/issues/2032 --- docker/ci/dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/ci/dockerfile b/docker/ci/dockerfile index e2e86781..ca743a87 100644 --- a/docker/ci/dockerfile +++ b/docker/ci/dockerfile @@ -22,7 +22,7 @@ RUN apt update -qq \ && apt install -y --no-install-recommends --no-install-suggests python3 python3-pip git git-lfs make ninja-build flex bison jq graphviz \ clang-format-${LLVM_TOOLS_VERSION} clang-tidy-${LLVM_TOOLS_VERSION} clang-tools-${LLVM_TOOLS_VERSION} \ && update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-${LLVM_TOOLS_VERSION} 100 \ - && pip3 install -q --upgrade --no-cache-dir pip && pip3 install -q --no-cache-dir conan==1.62 gcovr cmake cmake-format \ + && pip3 install -q --upgrade --no-cache-dir pip && pip3 install -q --no-cache-dir conan==1.62 gcovr cmake==3.31.6 cmake-format \ && apt-get clean && apt remove -y software-properties-common # Install gcc-12 and make ldconfig aware of the new libstdc++ location (for gcc)