Skip to content

Commit

Permalink
Merge branch 'main' into pr-fix_duration_monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
henningkayser authored Jan 27, 2022
2 parents 595e61f + 4e65a4f commit 505032c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ jobs:
- IMAGE: rolling-ci-testing
IKFAST_TEST: true
ROS_DISTRO: rolling
- IMAGE: galactic-ci
CLANG_TIDY: pedantic
ROS_DISTRO: galactic
- IMAGE: galactic-ci-testing
ROS_DISTRO: galactic
env:
CXXFLAGS: "-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls -Wno-deprecated-copy"
CLANG_TIDY_ARGS: --fix --fix-errors --format-style=file
Expand Down
4 changes: 4 additions & 0 deletions moveit2.repos
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ repositories:
type: git
url: https://github.com/PickNikRobotics/launch_param_builder
version: main
ros2_control:
type: git
url: https://github.com/ros-controls/ros2_control.git
version: 2.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ TEST_F(RuckigTests, empty_trajectory)
TEST_F(RuckigTests, not_enough_waypoints)
{
moveit::core::RobotState robot_state(robot_model_);
robot_state.setToDefaultValues();
// First waypoint is default joint positions
trajectory_->addSuffixWayPoint(robot_state, DEFAULT_TIMESTEP);

Expand All @@ -82,6 +83,7 @@ TEST_F(RuckigTests, not_enough_waypoints)
TEST_F(RuckigTests, basic_trajectory)
{
moveit::core::RobotState robot_state(robot_model_);
robot_state.setToDefaultValues();
// First waypoint is default joint positions
trajectory_->addSuffixWayPoint(robot_state, DEFAULT_TIMESTEP);

Expand Down
4 changes: 3 additions & 1 deletion moveit_planners/pilz_industrial_motion_planner/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@
-->
<test_depend>boost</test_depend>

<test_depend>ament_cmake_gmock</test_depend>
<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_lint_common</test_depend>
<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ros_testing</test_depend>

<!-- The export tag contains other, unspecified, tags -->
<export>
Expand Down

0 comments on commit 505032c

Please sign in to comment.