-
Notifications
You must be signed in to change notification settings - Fork 673
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
fix: missing dependency for Jazzy #7600
fix: missing dependency for Jazzy #7600
Conversation
Signed-off-by: f0reachARR <f0reach@f0reach.me>
Signed-off-by: f0reachARR <f0reach@f0reach.me>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7600 +/- ##
==========================================
- Coverage 29.13% 28.12% -1.01%
==========================================
Files 1607 886 -721
Lines 118180 74340 -43840
Branches 50849 28598 -22251
==========================================
- Hits 34427 20909 -13518
+ Misses 74534 50385 -24149
+ Partials 9219 3046 -6173
☔ View full report in Codecov by Sentry. |
@@ -29,6 +29,7 @@ | |||
<depend>geography_utils</depend> | |||
<depend>geometry_msgs</depend> | |||
<depend>global_parameter_loader</depend> | |||
<depend>grid_map_ros</depend> |
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.
Could you tell me the error output when if don't have grid_map_ros added into this dependency?
I have quickly searched the code with grid_map
as a keyword in autoware_static_centerline_generator package, but I couldn't get any search results.
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.
I have some errors without grid_map_ros
.
<command-line>: fatal error: grid_map_core/eigen_plugins/FunctorsPlugin.hpp: No such file or directory
compilation terminated.
gmake[2]: *** [CMakeFiles/main.dir/build.make:132: CMakeFiles/main.dir/src/utils.cpp.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
<command-line>: fatal error: grid_map_core/eigen_plugins/FunctorsPlugin.hpp: No such file or directory
compilation terminated.
gmake[2]: *** [CMakeFiles/main.dir/build.make:118: CMakeFiles/main.dir/src/centerline_source/bag_ego_trajectory_based_centerline.cpp.o] Error 1
<command-line>: fatal error: grid_map_core/eigen_plugins/FunctorsPlugin.hpp: No such file or directory
compilation terminated.
gmake[2]: *** [CMakeFiles/main.dir/build.make:104: CMakeFiles/main.dir/src/centerline_source/optimization_trajectory_based_centerline.cpp.o] Error 1
<command-line>: fatal error: grid_map_core/eigen_plugins/FunctorsPlugin.hpp: No such file or directory
compilation terminated.
gmake[2]: *** [CMakeFiles/main.dir/build.make:90: CMakeFiles/main.dir/src/static_centerline_generator_node.cpp.o] Error 1
<command-line>: fatal error: grid_map_core/eigen_plugins/FunctorsPlugin.hpp: No such file or directory
compilation terminated.
gmake[2]: *** [CMakeFiles/main.dir/build.make:76: CMakeFiles/main.dir/src/main.cpp.o] Error 1
gmake[1]: *** [CMakeFiles/Makefile2:625: CMakeFiles/main.dir/all] Error 2
This is caused by defining EIGEN_DENSEBASE_PLUGIN
by grid_map_ros
.
EIGEN_DENSEBASE_PLUGIN
affects Eigen behavior, and caues build error.
grid_map_ros
is an indirect dependency of static_centerline_generator
, but does not appear in include directory of static_centerline_generator
.
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Head branch was pushed to by a user without write access
0d811fd
to
40b7505
Compare
Thank you for your pull request. |
Thank you for your PR! |
@f0reachARR To keep Autoware healthy, we close PRs if there is no response for more than a week after requesting conflict resolution. If this PR is still active, please let us know. Even if this PR is closed, you are welcome to reopen it once the conflicts have been resolved. |
@Shin-kyoto Thank you for friendly ping! The status of this PR is currently under investigation for an unclear point discussed here. To make this status easier to understand, I have marked the PR as draft. |
Thank you very much for telling the situation of this PR!! |
Sorry for late reply. |
Description
This PR add / modify dependencies written in
package.xml
.The changed dependencies are almost about
ament_index_cpp
.For reasons unknown, Jazzy has a build error due to not having a dependency on ament_index_cpp.
We have found similar errors in other ROS packages and have confirmed that they are not specific to the author's environment.
Reference: #7598
Tests performed
colcon test
passed.This PR does not change the behavior of Autoware.
Effects on system behavior
Not applicable.
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.