Skip to content

Commit

Permalink
Enable 24.04 CI, require cmake 3.22.1 (#619)
Browse files Browse the repository at this point in the history
Part of gazebosim/gz-cmake#350.

Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters committed Jul 30, 2024
1 parent 3930407 commit ef0483f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@ jobs:
name: Ubuntu Jammy CI
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Compile and test
id: ci
uses: gazebo-tooling/action-gz-ci@jammy
with:
codecov-enabled: true
noble-ci:
runs-on: ubuntu-latest
name: Ubuntu Noble CI
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Compile and test
id: ci
uses: gazebo-tooling/action-gz-ci@noble
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)

#============================================================================
# Initialize the project
Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)

project(gz-common-examples)

Expand Down
2 changes: 1 addition & 1 deletion tutorials/profiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Update your CMakeLists.txt to the following. Note that the profiler must be
enabled at compile time in order to function.

```{.cpp}
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
# Find the gz-common library
find_package(gz-common6 QUIET REQUIRED COMPONENTS profiler)
Expand Down

0 comments on commit ef0483f

Please sign in to comment.