-
Notifications
You must be signed in to change notification settings - Fork 566
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove plugins from export set #3227
Remove plugins from export set #3227
Conversation
Signed-off-by: Paul Gesel <paul.gesel@picknik.ai>
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #3227 +/- ##
==========================================
- Coverage 45.69% 45.63% -0.05%
==========================================
Files 714 714
Lines 62299 62297 -2
Branches 7533 7530 -3
==========================================
- Hits 28462 28425 -37
- Misses 33669 33705 +36
+ Partials 168 167 -1 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Paul Gesel <paul.gesel@picknik.ai>
…oveit2 into pr-remove-plugin-from-export-set
Signed-off-by: Paul Gesel <paul.gesel@picknik.ai>
Signed-off-by: Paul Gesel <paul.gesel@picknik.ai>
Signed-off-by: Paul Gesel <paul.gesel@picknik.ai>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, thanks!
* Remove plugins from export set Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * move more plugins to different export set Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * run pre-commit Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * remove plugins from moveit_kinematics export Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * do not link base interface to plugin in kinematics Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> --------- Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai> (cherry picked from commit b5eb4de) # Conflicts: # moveit_core/CMakeLists.txt # moveit_kinematics/CMakeLists.txt # moveit_kinematics/cached_ik_kinematics_plugin/CMakeLists.txt # moveit_ros/move_group/CMakeLists.txt
* Remove plugins from export set Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * move more plugins to different export set Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * run pre-commit Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * remove plugins from moveit_kinematics export Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * do not link base interface to plugin in kinematics Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> --------- Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai> (cherry picked from commit b5eb4de)
* Remove plugins from export set Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * move more plugins to different export set Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * run pre-commit Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * remove plugins from moveit_kinematics export Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> * do not link base interface to plugin in kinematics Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> --------- Signed-off-by: Paul Gesel <paul.gesel@picknik.ai> Co-authored-by: Sebastian Jahr <sebastian.jahr@picknik.ai>
Description
Plugins that are intended to be loaded by classloader or pluginlib should not be in export sets that
ament_export_targets
is called on. This can cause plugins to fail to load.