-
Notifications
You must be signed in to change notification settings - Fork 258
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
making rostest optional in most packages #239
Conversation
👍 |
Could you elaborate on the rationale to make Thanks! |
@KristofRobot: As a final result, the images built with meta-ros now do not include the rostest library anymore, which was a dead binary on the image before anyway. (I added this explanation to the commit message of this pull request as well.) |
making rostest optional in most packages
@bulwahn - thanks for the explanation - merged. |
These commits replaces local patches by the patches provided upstream and removes the package dependencies on rostest.
In fact, all packages in meta-ros are configured, compiled and installed without any tests. Nevertheless, the packages still required the dependency on rostest, as it was requested by the CMakeLists.txt in its find_package (catkin REQUIRED ...) call. By the provided patches, the CMakeLists.txt now does not request the rostest package, when configured without tests.
As a final result, the images built with meta-ros now do not include the rostest library anymore, which was a dead binary on the image before anyway.