File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
matrix :
16
16
include :
17
- - os_code_name : jammy
18
- ros_distro : rolling
17
+ # TODO : Include rolling later if available on jammy or noble.
19
18
- os_code_name : jammy
20
19
ros_distro : humble
21
20
name : test_against_${{matrix.ros_distro}}_debs
43
42
strategy :
44
43
matrix :
45
44
include :
46
- - os_code_name : jammy
47
- ros_distro : rolling
45
+ # TODO : Include rolling later if available on jammy or noble.
48
46
- os_code_name : jammy
49
47
ros_distro : humble
50
48
name : test_against_${{matrix.ros_distro}}_archive
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.10 )
2
2
project (drake_ros )
3
3
4
- # Default to C++17
4
+ # Default to C++20
5
5
if (NOT CMAKE_CXX_STANDARD )
6
- set (CMAKE_CXX_STANDARD 17 )
6
+ set (CMAKE_CXX_STANDARD 20 )
7
7
endif ()
8
8
9
9
if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.10 )
2
2
project (drake_ros_examples )
3
3
4
- # Default to C++17
4
+ # Default to C++20
5
5
if (NOT CMAKE_CXX_STANDARD )
6
- set (CMAKE_CXX_STANDARD 17 )
6
+ set (CMAKE_CXX_STANDARD 20 )
7
7
endif ()
8
8
9
9
if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
You can’t perform that action at this time.
0 commit comments