Skip to content

Commit 303532f

Browse files
authored
Enable 24.04 CI, require cmake 3.22.1 (#146)
Part of gazebosim/gz-cmake#350. Signed-off-by: Steve Peters <[email protected]>
1 parent 9ab8376 commit 303532f

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/ci.yml

+9
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,12 @@ jobs:
2323
cppcheck-enabled: true
2424
cpplint-enabled: true
2525
doxygen-enabled: true
26+
noble-ci:
27+
runs-on: ubuntu-latest
28+
name: Ubuntu Noble CI
29+
steps:
30+
- name: Checkout
31+
uses: actions/checkout@v4
32+
- name: Compile and test
33+
id: ci
34+
uses: gazebo-tooling/action-gz-ci@noble

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
22

33
#============================================================================
44
# Initialize the project

examples/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
22

33
project(examples)
44

examples/plugins/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.22.1 FATAL_ERROR)
22

33
# Each source file in this directory is meant to be compiled into a plugin
44

0 commit comments

Comments
 (0)