Skip to content

Commit

Permalink
Bump CMake to 3.28.3 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
garethsb committed Feb 16, 2024
1 parent 65732c6 commit d8cf111
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/src/build-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions Documents/Dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d8cf111

Please sign in to comment.