Skip to content

Commit 9e685db

Browse files
authored
Migrate to jazzy (#3)
1 parent b1c6c29 commit 9e685db

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
name: Build and Test
22
on:
33
push:
4-
branches: [ humble ]
4+
branches: [ jazzy ]
55
pull_request:
6-
branches: [ humble ]
6+
branches: [ jazzy ]
77
jobs:
88
build-and-test:
99
runs-on: ubuntu-latest
1010
container:
11-
image: ubuntu:jammy
11+
image: ubuntu:noble
1212
steps:
1313
- name: Check out
14-
uses: actions/checkout@v2.3.4
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: Setup ROS 2
18-
uses: ros-tooling/setup-ros@v0.3
18+
uses: ros-tooling/setup-ros@v0.7
1919
with:
20-
required-ros-distributions: humble
20+
required-ros-distributions: jazzy
2121
- name: Build rmoss_interfaces
22-
uses: ros-tooling/action-ros-ci@v0.2
22+
uses: ros-tooling/action-ros-ci@v0.4
2323
with:
24-
target-ros2-distro: humble
24+
target-ros2-distro: jazzy

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.5)
22

33
project(rmoss_interfaces)
44

5-
# Default to C++14
5+
# Default to C++17
66
if(NOT CMAKE_CXX_STANDARD)
7-
set(CMAKE_CXX_STANDARD 14)
7+
set(CMAKE_CXX_STANDARD 17)
88
endif()
99
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
1010
add_compile_options(-Wall -Wextra -Wpedantic)

0 commit comments

Comments
 (0)