Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

Commit 98e1d3c

Browse files
committed
Rollback diff w.r.t. master
1 parent ad8898a commit 98e1d3c

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
rosdep update
2929
rosdep install --from-paths ./ -i -y --rosdistro rolling \
3030
--ignore-src
31-
apt-get upgrade -q -y --with-new-pkgs ros-rolling-rcl
3231
- name: Build project
3332
id: build
3433
run: |
@@ -47,7 +46,7 @@ jobs:
4746
container:
4847
image: osrf/ros:rolling-desktop
4948
steps:
50-
- uses: actions/checkout@v2
49+
- uses: actions/checkout@v3
5150
- name: Setup colcon workspace
5251
id: configure
5352
run: |
@@ -65,7 +64,6 @@ jobs:
6564
rosdep update
6665
rosdep install --from-paths ./ -i -y --rosdistro rolling \
6766
--ignore-src
68-
apt-get upgrade -q -y --with-new-pkgs ros-rolling-rcl
6967
- name: Build project
7068
id: build
7169
run: |

gazebo_ros2_control/CMakeLists.txt

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.5.0)
22
project(gazebo_ros2_control)
33

44
find_package(ament_cmake REQUIRED)
5-
find_package(service_msgs REQUIRED)
65
find_package(angles REQUIRED)
76
find_package(controller_manager REQUIRED)
87
find_package(gazebo_dev REQUIRED)
@@ -31,7 +30,6 @@ add_library(${PROJECT_NAME} SHARED
3130
)
3231
ament_target_dependencies(${PROJECT_NAME}
3332
angles
34-
service_msgs
3533
controller_manager
3634
gazebo_dev
3735
gazebo_ros
@@ -64,8 +62,18 @@ ament_export_include_directories(
6462
include
6563
)
6664

67-
ament_export_dependencies(ament_cmake)
68-
ament_export_dependencies(rclcpp)
65+
ament_export_dependencies(
66+
ament_cmake
67+
angles
68+
controller_manager
69+
gazebo_dev
70+
gazebo_ros
71+
hardware_interface
72+
pluginlib
73+
rclcpp
74+
yaml_cpp_vendor
75+
)
76+
6977
ament_export_libraries(
7078
${PROJECT_NAME}
7179
gazebo_hardware_plugins

gazebo_ros2_control/package.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<buildtool_depend>ament_cmake</buildtool_depend>
2020

2121
<depend>angles</depend>
22-
<depend>service_msgs</depend>
2322
<depend>gazebo_dev</depend>
2423
<depend>gazebo_ros</depend>
2524
<depend>controller_manager</depend>

0 commit comments

Comments
 (0)