Skip to content

Commit 301b4de

Browse files
Disable rolling CI (#338)
* Turned off rolling CI --------- Signed-off-by: Aditya Pande <[email protected]>
1 parent 4c17af0 commit 301b4de

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
include:
17-
- os_code_name: jammy
18-
ros_distro: rolling
17+
# TODO : Include rolling later if available on jammy or noble.
1918
- os_code_name: jammy
2019
ros_distro: humble
2120
name: test_against_${{matrix.ros_distro}}_debs
@@ -43,8 +42,7 @@ jobs:
4342
strategy:
4443
matrix:
4544
include:
46-
- os_code_name: jammy
47-
ros_distro: rolling
45+
# TODO : Include rolling later if available on jammy or noble.
4846
- os_code_name: jammy
4947
ros_distro: humble
5048
name: test_against_${{matrix.ros_distro}}_archive

drake_ros/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
cmake_minimum_required(VERSION 3.10)
22
project(drake_ros)
33

4-
# Default to C++17
4+
# Default to C++20
55
if(NOT CMAKE_CXX_STANDARD)
6-
set(CMAKE_CXX_STANDARD 17)
6+
set(CMAKE_CXX_STANDARD 20)
77
endif()
88

99
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")

drake_ros_examples/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
cmake_minimum_required(VERSION 3.10)
22
project(drake_ros_examples)
33

4-
# Default to C++17
4+
# Default to C++20
55
if(NOT CMAKE_CXX_STANDARD)
6-
set(CMAKE_CXX_STANDARD 17)
6+
set(CMAKE_CXX_STANDARD 20)
77
endif()
88

99
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")

0 commit comments

Comments
 (0)