From d8cf11190c631077fc8c88ab7d29733b7955e0eb Mon Sep 17 00:00:00 2001 From: Gareth Sylvester-Bradley Date: Fri, 16 Feb 2024 17:41:49 +0000 Subject: [PATCH] Bump CMake to 3.28.3 in CI --- .github/workflows/build-test.yml | 4 ++-- .github/workflows/src/build-setup.yml | 2 +- Documents/Dependencies.md | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index f5e5d5f3..4ee58811 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -124,7 +124,7 @@ jobs: pip install conan~=2.0.5 - name: install cmake - uses: lukka/get-cmake@v3.24.2 + uses: lukka/get-cmake@v3.28.3 - name: setup bash path working-directory: ${{ env.GITHUB_WORKSPACE }} @@ -675,7 +675,7 @@ jobs: pip install conan~=2.0.5 - name: install cmake - uses: lukka/get-cmake@v3.24.2 + uses: lukka/get-cmake@v3.28.3 - name: setup bash path working-directory: ${{ env.GITHUB_WORKSPACE }} diff --git a/.github/workflows/src/build-setup.yml b/.github/workflows/src/build-setup.yml index a6dd3015..603d323e 100644 --- a/.github/workflows/src/build-setup.yml +++ b/.github/workflows/src/build-setup.yml @@ -4,7 +4,7 @@ pip install conan~=2.0.5 - name: install cmake - uses: lukka/get-cmake@v3.24.2 + uses: lukka/get-cmake@v3.28.3 - name: setup bash path working-directory: ${{ env.GITHUB_WORKSPACE }} diff --git a/Documents/Dependencies.md b/Documents/Dependencies.md index a76032d4..f413e827 100644 --- a/Documents/Dependencies.md +++ b/Documents/Dependencies.md @@ -34,14 +34,14 @@ Specific instructions for [cross-compiling for Raspberry Pi](Raspberry-Pi.md) ar 1. Download and install a recent [CMake stable release](https://cmake.org/download/#latest) for your platform Notes: - - Currently, CMake 3.24 or higher is required in order to use the Conan package manager; version 3.24.2 (latest release at the time) has been tested + - Currently, CMake 3.24 or higher is required in order to use the Conan package manager; version 3.28.3 (latest release at the time) has been tested - Pre-built binary distributions are available for many platforms - On Linux distributions, e.g. Ubuntu 14.04 LTS (long-term support), the pre-built binary version available via ``apt-get`` may be too out-of-date Fetch, build and install a suitable version: ```sh - wget "https://cmake.org/files/v3.24/cmake-3.24.2.tar.gz" - tar -zxvf cmake-3.24.2.tar.gz - cd cmake-3.24.2 + wget "https://cmake.org/files/v3.28/cmake-3.28.3.tar.gz" + tar -zxvf cmake-3.28.3.tar.gz + cd cmake-3.28.3 ./bootstrap make sudo make install