-
Notifications
You must be signed in to change notification settings - Fork 170
fix: added generated bindings for ROS Humble, Jazzy, Kilted and Rolling #512
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
Conversation
Signed-off-by: Esteve Fernandez <[email protected]>
…ings in build.rs. Added GitHub workflow to update the generated bindings every night Signed-off-by: Esteve Fernandez <[email protected]>
Signed-off-by: Esteve Fernandez <[email protected]>
Signed-off-by: Esteve Fernandez <[email protected]>
Signed-off-by: Esteve Fernandez <[email protected]>
Signed-off-by: Esteve Fernandez <[email protected]>
Signed-off-by: Esteve Fernandez <[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.
There seems to be a fair amount being removed from the build script. Is this functionality no longer needed?
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've removed the code that generates the bindings from the build.rs
script and moved it to the CI, that way there's only one source of truth for the bindings and they'll be the same for everyone who uses rclrs
. If anyone wants to generate the bindings locally, they can use the generate_bindings.py
script.
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
# Run the CI at 02:22 UTC every Tuesday | ||
# We pick an arbitrary time outside of most of the world's work hours | ||
# to minimize the likelihood of running alongside a heavy workload. | ||
- cron: '22 2 * * 2' |
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.
The PR description says this will run daily, but this looks like it's actually weekly. Is that intentional?
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.
Good catch, I've submitted #515 to fix that
This PR adds generated bindings for Humble, Jazzy, Kilted and Rolling to the source tree.
It also adds a workflow job that generates the bindings on demand and daily, and opens a PR with the changes.