Skip to content

Commit

Permalink
Merge branch 'main' into aditya/roslaunch
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapande-1995 committed Mar 27, 2024
2 parents 1ddf90e + e2b2ca4 commit a87e1fc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
strategy:
matrix:
include:
- os_code_name: jammy
ros_distro: rolling
# TODO : Include rolling later if available on jammy or noble.
- os_code_name: jammy
ros_distro: humble
name: test_against_${{matrix.ros_distro}}_debs
Expand Down Expand Up @@ -43,8 +42,7 @@ jobs:
strategy:
matrix:
include:
- os_code_name: jammy
ros_distro: rolling
# TODO : Include rolling later if available on jammy or noble.
- os_code_name: jammy
ros_distro: humble
name: test_against_${{matrix.ros_distro}}_archive
Expand Down
6 changes: 3 additions & 3 deletions default.bazelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use C++17.
build --cxxopt=-std=c++17
build --host_cxxopt=-std=c++17
# Use C++20.
build --cxxopt=-std=c++20
build --host_cxxopt=-std=c++20

# Use Python 3.
build --python_path=/usr/bin/python3
Expand Down
4 changes: 2 additions & 2 deletions drake_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.10)
project(drake_ros)

# Default to C++17
# Default to C++20
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 20)
endif()

if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
Expand Down
4 changes: 2 additions & 2 deletions drake_ros_examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.10)
project(drake_ros_examples)

# Default to C++17
# Default to C++20
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 20)
endif()

if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
Expand Down

0 comments on commit a87e1fc

Please sign in to comment.