Skip to content

Commit 5998d8e

Browse files
authored
Merge branch 'master' into master
2 parents 17654f9 + 432ecad commit 5998d8e

13 files changed

+24
-29
lines changed

.github/workflows/rolling-abi-compatibility.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ on:
1414
- '**/package.xml'
1515
- '**/CMakeLists.txt'
1616
- 'ros2_control-not-released.rolling.repos'
17-
- 'ros2_control-not-released.kilted.repos'
1817

1918
concurrency:
2019
# cancel previous runs of the same workflow, except for pushes on given branches

.github/workflows/rolling-binary-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717
- '**/package.xml'
1818
- '**/CMakeLists.txt'
1919
- 'ros2_control-not-released.rolling.repos'
20-
- 'ros2_control-not-released.kilted.repos'
2120
push: *event
2221
schedule:
2322
# Run every morning to detect flakiness and broken dependencies

.github/workflows/rolling-debian-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ on:
1414
- '**/package.xml'
1515
- '**/CMakeLists.txt'
1616
- 'ros2_control.rolling.repos'
17-
- 'ros2_control.kilted.repos'
1817
schedule:
1918
# Run every day to detect flakiness and broken dependencies
2019
- cron: '03 1 * * MON-FRI'

.github/workflows/rolling-rhel-binary-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ on:
1414
- '**/package.xml'
1515
- '**/CMakeLists.txt'
1616
- 'ros2_control.rolling.repos'
17-
- 'ros2_control.kilted.repos'
1817
schedule:
1918
# Run every day to detect flakiness and broken dependencies
2019
- cron: '03 1 * * MON-FRI'

.github/workflows/rolling-semi-binary-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717
- '**/package.xml'
1818
- '**/CMakeLists.txt'
1919
- 'ros2_control.rolling.repos'
20-
- 'ros2_control.kilted.repos'
2120
push: *event
2221
schedule:
2322
# Run every morning to detect flakiness and broken dependencies

.github/workflows/rolling-semi-binary-downstream-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717
- '**/package.xml'
1818
- '**/CMakeLists.txt'
1919
- 'ros_controls.rolling.repos'
20-
- 'ros_controls.kilted.repos'
2120

2221
concurrency:
2322
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/rolling-source-build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ on:
1414
- '**/package.xml'
1515
- '**/CMakeLists.txt'
1616
- 'ros2_control.rolling.repos'
17-
- 'ros2_control.kilted.repos'
1817
pull_request:
1918
branches:
2019
- master

controller_manager/CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ set(THIS_PACKAGE_INCLUDE_DEPENDS
99
controller_interface
1010
controller_manager_msgs
1111
diagnostic_updater
12+
fmt
13+
generate_parameter_library
1214
hardware_interface
15+
libstatistics_collector
16+
lifecycle_msgs
1317
pluginlib
1418
rclcpp
1519
realtime_tools
1620
std_msgs
17-
libstatistics_collector
18-
generate_parameter_library
19-
fmt
2021
)
2122

2223
find_package(ament_cmake REQUIRED)

controller_manager/package.xml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,34 +19,35 @@
1919
<depend>controller_interface</depend>
2020
<depend>controller_manager_msgs</depend>
2121
<depend>diagnostic_updater</depend>
22+
<depend>fmt</depend>
23+
<depend>generate_parameter_library</depend>
2224
<depend>hardware_interface</depend>
23-
<depend>launch</depend>
24-
<depend>launch_ros</depend>
25+
<depend>libstatistics_collector</depend>
26+
<depend>lifecycle_msgs</depend>
2527
<depend>pluginlib</depend>
2628
<depend>rclcpp</depend>
27-
<depend>rcpputils</depend>
2829
<depend>realtime_tools</depend>
29-
<depend>ros2_control_test_assets</depend>
30-
<depend>ros2param</depend>
31-
<depend>ros2run</depend>
3230
<depend>std_msgs</depend>
33-
<depend>libstatistics_collector</depend>
34-
<depend>generate_parameter_library</depend>
35-
<depend>fmt</depend>
31+
32+
<exec_depend>launch_ros</exec_depend>
33+
<exec_depend>launch_testing_ros</exec_depend>
34+
<exec_depend>launch</exec_depend>
3635
<exec_depend>python3-filelock</exec_depend>
36+
<exec_depend>python3-yaml</exec_depend>
37+
<exec_depend>rcl_interfaces</exec_depend>
38+
<exec_depend>rclpy</exec_depend>
39+
<exec_depend>ros2param</exec_depend>
40+
<exec_depend>sensor_msgs</exec_depend>
3741

3842
<test_depend>ament_cmake_gmock</test_depend>
3943
<test_depend>ament_cmake_pytest</test_depend>
44+
<test_depend>example_interfaces</test_depend>
4045
<test_depend>hardware_interface_testing</test_depend>
41-
<test_depend>launch_testing_ros</test_depend>
4246
<test_depend>launch_testing</test_depend>
43-
<test_depend>launch</test_depend>
4447
<test_depend>python3-coverage</test_depend>
45-
<test_depend>rclpy</test_depend>
4648
<test_depend>robot_state_publisher</test_depend>
4749
<test_depend>ros2_control_test_assets</test_depend>
48-
<test_depend>sensor_msgs</test_depend>
49-
<test_depend>example_interfaces</test_depend>
50+
<test_depend>ros2pkg</test_depend>
5051

5152
<export>
5253
<build_type>ament_cmake</build_type>

hardware_interface/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ set(THIS_PACKAGE_INCLUDE_DEPENDS
1414
rcutils
1515
realtime_tools
1616
TinyXML2
17-
tinyxml2_vendor
1817
joint_limits
1918
urdf
2019
pal_statistics
@@ -50,7 +49,6 @@ target_link_libraries(hardware_interface PUBLIC
5049
rcpputils::rcpputils
5150
${joint_limits_TARGETS}
5251
${TinyXML2_LIBRARIES}
53-
${tinyxml2_vendor_LIBRARIES}
5452
${pal_statistics_LIBRARIES}
5553
${control_msgs_TARGETS}
5654
${lifecycle_msgs_TARGETS}

0 commit comments

Comments
 (0)