Skip to content

Commit 6c57d7e

Browse files
authored
Merge branch 'main' into reorganize-ci
2 parents 0b8f7ce + 32d3883 commit 6c57d7e

File tree

14 files changed

+22
-47
lines changed

14 files changed

+22
-47
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
# run: |
154154
# testspace "[ ${{ matrix.env.IMAGE }} ]${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml"
155155
- name: Upload test artifacts (on failure)
156-
uses: actions/upload-artifact@v4
156+
uses: actions/upload-artifact@v5
157157
if: failure() && (steps.ici.outputs.run_target_test || steps.ici.outputs.target_test_results)
158158
with:
159159
name: test-results-${{ matrix.env.IMAGE }}

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
steps:
172172
- name: Delete Untagged Images
173173
if: (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2')
174-
uses: actions/github-script@v7
174+
uses: actions/github-script@v8
175175
with:
176176
github-token: ${{ secrets.DELETE_PACKAGES_TOKEN }}
177177
script: |

.github/workflows/stale.yaml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/tutorial_docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
steps:
7272
- name: Delete Untagged Images
7373
if: (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2')
74-
uses: actions/github-script@v7
74+
uses: actions/github-script@v8
7575
with:
7676
github-token: ${{ secrets.DELETE_PACKAGES_TOKEN }}
7777
script: |

.pre-commit-config.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,12 @@ repos:
3737
hooks:
3838
- id: black
3939

40-
- repo: local
40+
- repo: https://github.com/pre-commit/mirrors-clang-format
41+
rev: v14.0.6
4142
hooks:
4243
- id: clang-format
43-
name: clang-format
44-
description: Format files with ClangFormat.
45-
entry: clang-format-14
46-
language: system
47-
files: \.(c|cc|cxx|cpp|frag|glsl|h|hpp|hxx|ih|ispc|ipp|java|js|m|proto|vert)$
48-
args: ['-fallback-style=none', '-i']
44+
types_or: [c++, c, cuda]
45+
args: ["-fallback-style=none"]
4946
- repo: https://github.com/codespell-project/codespell
5047
rev: v2.4.1
5148
hooks:

moveit_configs_utils/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
maintainer_email="[email protected]",
1919
description="Python library for loading MoveIt config parameters in launch files",
2020
license="BSD",
21-
tests_require=["pytest"],
21+
extras_require={
22+
"test": [
23+
"pytest",
24+
],
25+
},
2226
entry_points={
2327
"console_scripts": [],
2428
},

moveit_core/robot_state/test/test_aabb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ TEST_F(TestAABB, TestPR2)
160160
auto pub_aabb =
161161
node->create_publisher<visualization_msgs::msg::Marker>("/visualization_aabb", rmw_qos_profile_default);
162162
auto pub_obb = node->create_publisher<visualization_msgs::msg::Marker>("/visualization_obb", rmw_qos_profile_default);
163-
rclcpp::Rate loop_rate(10);
163+
rclcpp::WallRate loop_rate(10);
164164

165165
// Wait for the publishers to establish connections
166166
sleep(5);

moveit_kinematics/cached_ik_kinematics_plugin_description.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<library path="moveit_cached_ik_kinematics_plugin">
2-
<class name="cached_ik_kinematics_plugin/CachedKDLKinematicsPlugin" type="cached_ik_kinematics_plugin::CachedIKKinematicsPlugin<kdl_kinematics_plugin::KDLKinematicsPlugin>" base_class_type="kinematics::KinematicsBase">
2+
<class name="cached_ik_kinematics_plugin/CachedKDLKinematicsPlugin" type="cached_ik_kinematics_plugin::CachedIKKinematicsPlugin&lt;kdl_kinematics_plugin::KDLKinematicsPlugin&gt;" base_class_type="kinematics::KinematicsBase">
33
<description>
44
A kinematics plugin for persistently caching IK solutions computed with the KDL kinematics plugin.
55
</description>
66
</class>
7-
<class name="cached_ik_kinematics_plugin/CachedSrvKinematicsPlugin" type="cached_ik_kinematics_plugin::CachedIKKinematicsPlugin<srv_kinematics_plugin::SrvKinematicsPlugin>" base_class_type="kinematics::KinematicsBase">
7+
<class name="cached_ik_kinematics_plugin/CachedSrvKinematicsPlugin" type="cached_ik_kinematics_plugin::CachedIKKinematicsPlugin&lt;srv_kinematics_plugin::SrvKinematicsPlugin&gt;" base_class_type="kinematics::KinematicsBase">
88
<description>
99
A kinematics plugin for persistently caching IK solutions computed with the Srv kinematics plugin.
1010
</description>

moveit_ros/hybrid_planning/test/test_basic_integration.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ TEST_F(HybridPlanningFixture, ActionCompletion)
219219
auto goal_handle_future = hp_action_client_->async_send_goal(goal_action_request_, send_goal_options_);
220220
});
221221

222-
rclcpp::Rate rate(10);
222+
rclcpp::WallRate rate(10);
223223
while (!action_complete_)
224224
{
225225
executor_.spin_once();
@@ -241,7 +241,7 @@ TEST_F(HybridPlanningFixture, ActionCompletion)
241241
hp_action_client_->async_cancel_all_goals();
242242
});
243243
244-
rclcpp::Rate rate(10);
244+
rclcpp::WallRate rate(10);
245245
while (!action_complete_)
246246
{
247247
executor_.spin_once();

moveit_ros/move_group/src/default_capabilities/tf_publisher_capability.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ void TfPublisher::publishPlanningSceneFrames()
9494
tf2_ros::TransformBroadcaster broadcaster(context_->moveit_cpp_->getNode());
9595
#endif
9696
geometry_msgs::msg::TransformStamped transform;
97-
rclcpp::Rate rate(rate_);
97+
rclcpp::WallRate rate(rate_);
9898

9999
while (keep_running_)
100100
{

0 commit comments

Comments
 (0)