-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add support for FastDDS versions earlier than 2.13 #82
Conversation
10af4b2
to
1eb3a85
Compare
1eb3a85
to
c294420
Compare
c294420
to
cf6dbf8
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #82 +/- ##
=======================================
Coverage 36.78% 36.78%
=======================================
Files 116 116
Lines 4975 4983 +8
Branches 1909 1913 +4
=======================================
+ Hits 1830 1833 +3
Misses 2332 2332
- Partials 813 818 +5 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
cf6dbf8
to
9e6d5aa
Compare
Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
36c1a02
to
9253fc5
Compare
ddspipe_core/CMakeLists.txt
Outdated
set(DDS_TYPES_VERSION "/v2/") | ||
else() | ||
set(DDS_TYPES_VERSION "/v1/") |
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.
set(DDS_TYPES_VERSION "/v2/") | |
else() | |
set(DDS_TYPES_VERSION "/v1/") | |
set(DDS_TYPES_VERSION "/v1/") | |
else() | |
set(DDS_TYPES_VERSION "/v2/") |
ddspipe_core/CMakeLists.txt
Outdated
file(GLOB_RECURSE TEST_FILES "${PROJECT_SOURCE_DIR}/test/") | ||
foreach(TEST_FILE ${TEST_FILES}) | ||
if(NOT TEST_FILE MATCHES ${DDS_TYPES_VERSION}) | ||
compile_test_library(${TEST_FILE}) | ||
endif() | ||
endforeach() |
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.
This has the same issue as we already resolved for the router. You are setting test files while the function request the path to tests.
9952e0c
to
1300101
Compare
1300101
to
e56d861
Compare
Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
e56d861
to
dfcb11c
Compare
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.
LGTM 🚀
* Add support for FastDDS versions earlier than 2.13 Signed-off-by: Irene Bandera <irenebandera@eprosima.com> * FASTDDS_SUBDIRECTORY -> DDS_TYPES_VERSION Signed-off-by: Irene Bandera <irenebandera@eprosima.com> * Apply changes Signed-off-by: Irene Bandera <irenebandera@eprosima.com> * Correct function names Signed-off-by: Irene Bandera <irenebandera@eprosima.com> * Update FASTRTPS version check in CommonReader and CommonWriter Signed-off-by: Irene Bandera <irenebandera@eprosima.com> * Uncrustify Signed-off-by: Irene Bandera <irenebandera@eprosima.com> * Compile test libraries in ddspipe_core Signed-off-by: Irene Bandera <irenebandera@eprosima.com> --------- Signed-off-by: Irene Bandera <irenebandera@eprosima.com>
Merge after: