-
Notifications
You must be signed in to change notification settings - Fork 8
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
validate dependencies after build #18
Comments
for completeness, the rosdep keys are python-pygithub3, python-slacker-cli and python-tabulate-pip and even for focal they are all resolved via pip. Consequently they are just missing from the OSRF Debian package, so a simple solution would be to define them as empty keys in the Action.
In general Debian does not validate binary dependencies as they could come from any source. You could add something like:
Edit: There could also be cases where A build depends B but B run depends A so B could not be installable directly after the build. |
This was the main reason why I did not follow-up on the idea. In lights of the current implementation, the staged build now bundles repositories where this is the case together as |
Running it as an independent step is easy. You could use |
At the moment the action does not validate whether all exec dependencies are actually correctly mapped to the target system. So right now, e.g.,
jsk_tools
builds successfully, but cannot be installed becausepygithub3
,slacker-cli
,tabulate
are no valid packages on Ubuntu 22.04.The actual error here is that the rosdep keys/package.xml entries are inconsistent, which will be fixed soon. But this issue is about the action not reporting a failure in this case. I expect there is an easy way to check this around sbuild?
The text was updated successfully, but these errors were encountered: