Skip to content

Commit

Permalink
Merge branch 'main' into configs_fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vatan Aksoy Tezer authored Mar 10, 2022
2 parents 4647fea + 2c75c9f commit bd35f58
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ jobs:
fail-fast: false
matrix:
env:
- IMAGE: rolling-ci
# - IMAGE: rolling-ci
# ROS_DISTRO: rolling
# - IMAGE: rolling-ci-testing
# ROS_DISTRO: rolling
- IMAGE: galactic-ci
CCOV: true
ROS_DISTRO: rolling
- IMAGE: rolling-ci-testing
ROS_DISTRO: galactic
- IMAGE: galactic-ci-testing
ROS_DISTRO: galactic
IKFAST_TEST: true
ROS_DISTRO: rolling
CLANG_TIDY: pedantic
env:
CXXFLAGS: "-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls -Wno-deprecated-copy"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def generate_launch_description():
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
2 changes: 1 addition & 1 deletion moveit_ros/moveit_servo/launch/servo_example.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def generate_launch_description():
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def generate_servo_test_description(
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def generate_servo_test_description(*args, gtest_name: SomeSubstitutionsType):
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
1 change: 1 addition & 0 deletions moveit_ros/planning/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ if(BUILD_TESTING)
set(ament_cmake_cppcheck_FOUND TRUE)
set(ament_cmake_cpplint_FOUND TRUE)
set(ament_cmake_uncrustify_FOUND TRUE)
set(ament_cmake_flake8_FOUND TRUE)

# Run all lint tests in package.xml except those listed above
ament_lint_auto_find_test_dependencies()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def generate_move_group_test_description(*args, gtest_name: SomeSubstitutionsTyp
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down

0 comments on commit bd35f58

Please sign in to comment.