-
Notifications
You must be signed in to change notification settings - Fork 1
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
A fallback to support content filters in rcl #1
base: master
Are you sure you want to change the base?
A fallback to support content filters in rcl #1
Conversation
Unrelated failures about flake8 on https://ci.ros2.org/job/ci_linux-aarch64/11605/ .
The prog was removed. Please refer to https://github.com/PyCQA/flake8/blob/5.0.1/src/flake8/options/manager.py#L315-L324 |
29f4661
to
528c2dc
Compare
Signed-off-by: Chen Lihui <[email protected]>
a flaky test on windows is a known issue reported in ros2/examples#340. Test Result (1 failure / -1) |
@iuhilnehc-ynos i will be working on this as well. |
Signed-off-by: Chen Lihui <[email protected]>
Signed-off-by: Chen Lihui <[email protected]>
Signed-off-by: Chen Lihui <[email protected]>
Signed-off-by: Chen Lihui <[email protected]>
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.
1st review for tao_pegtl_vendor
and test_content_filter_msgs
, just minor comments.
i will try to review core until next week.
test_content_filter_msgs/package.xml
Outdated
<name>test_content_filter_msgs</name> | ||
<version>0.0.1</version> | ||
<description>Complex messages for test rcl content filter fallback api.</description> | ||
<maintainer email="[email protected]">Chen Lihui</maintainer> |
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.
So are other packages, could you add [email protected]
just in case? it would be probably better to put multiple members here for it.
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.
Thank you. Updated in 850727f.
I added @fujitatomoya and @Barry-Xu-2018 to the maintainer list, but I don't know if I should add somebody at openrobotics.org
. I'll update it if there is another request.
@@ -0,0 +1,18 @@ | |||
# Copyright 2022 Sony Corporation |
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.
skipping the year, but precise company name should be applied. (and else where)
# Copyright 2022 Sony Corporation | |
# Copyright 2022 Sony Group Corporation |
tao_pegtl_vendor/package.xml
Outdated
<version>0.0.1</version> | ||
<description> | ||
Wrapper around pegtl, providing nothing but a dependency on pegtl, on some systems. | ||
On others, it provides an ExternalProject build of spdlog. |
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.
Why this package is related to spdlog
?
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.
Sorry, I forgot to update it. Updated in 850727f
project(rcl_content_filter_fallback) | ||
|
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.
?
project(rcl_content_filter_fallback) | |
project(rcl_content_filter_fallback) |
{ | ||
#endif | ||
|
||
/// Create a rcl content filter fallback instance to filter ros2 message data. |
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.
/// Create a rcl content filter fallback instance to filter ros2 message data. | |
/// Create a rcl content filter fallback instance to filter ros 2 message data. |
Co-authored-by: Tomoya.Fujita <[email protected]> Signed-off-by: Chen Lihui <[email protected]>
Signed-off-by: Chen Lihui <[email protected]>
CI for #1, ros2/rcl#996, ros2/demos#579: |
To address partial requirement in ros2/rcl#982.
Some extra enhancements will be the follow-up PRs.
Signed-off-by: Chen Lihui [email protected]