Skip to content

Commit

Permalink
MTC Tutorial: Fix Workflow Issues
Browse files Browse the repository at this point in the history
    - Add moveit_task_constructor package as upstream workspace
      package to CI.
    - Add build and run dependency entries for
      moveit_task_constructor_core package.
    - Fix EOF's.
  • Loading branch information
cpetersmeier committed Aug 30, 2021
1 parent 89d0eba commit aff144e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
CCACHE_DIR: ${{ github.workspace }}/.ccache
BASEDIR: ${{ github.workspace }}/.work
CLANG_TIDY_BASE_REF: ${{ github.base_ref || github.ref }}
UPSTREAM_WORKSPACE: github:ros-planning/moveit_task_constructor#master

name: ${{ matrix.env.IMAGE }}${{ matrix.env.CATKIN_LINT && ' + catkin_lint' || ''}}${{ matrix.env.CLANG_TIDY && ' + clang-tidy' || '' }}
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ find_package(catkin REQUIRED
moveit_ros_planning
moveit_ros_planning_interface
moveit_ros_perception
moveit_task_constructor_core
rviz_visual_tools
moveit_visual_tools
pluginlib
Expand Down
6 changes: 1 addition & 5 deletions doc/moveit_task_constructor/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
find_package(catkin REQUIRED COMPONENTS
moveit_task_constructor_core
)

add_executable(extension src/extension_tutorial.cpp)
target_link_libraries(extension
${catkin_LIBRARIES}
Expand All @@ -13,4 +9,4 @@ install(
extension
RUNTIME DESTINATION
${CATKIN_PACKAGE_BIN_DESTINATION}
)
)
2 changes: 1 addition & 1 deletion doc/moveit_task_constructor/src/extension_tutorial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,4 @@ int main(int argc, char** argv)
ros::waitForShutdown();

return 0;
}
}
2 changes: 2 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<build_depend>moveit_ros_planning</build_depend>
<build_depend>moveit_ros_planning_interface</build_depend>
<build_depend>moveit_ros_perception</build_depend>
<build_depend>moveit_task_constructor_core</build_depend>
<build_depend>interactive_markers</build_depend>
<build_depend>geometric_shapes</build_depend>
<build_depend>moveit_visual_tools</build_depend>
Expand All @@ -43,6 +44,7 @@
<run_depend>moveit_fake_controller_manager</run_depend>
<run_depend>moveit_ros_planning_interface</run_depend>
<run_depend>moveit_ros_perception</run_depend>
<run_depend>moveit_task_constructor_core</run_depend>
<run_depend>interactive_markers</run_depend>
<run_depend>moveit_visual_tools</run_depend>
<run_depend>rviz_visual_tools</run_depend>
Expand Down

0 comments on commit aff144e

Please sign in to comment.