-
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 bumping of internal deps for plugin #44
Conversation
PR missing one of the required labels: {'dependencies', 'bug', 'internal', 'enhancement', 'new feature', 'breaking-change', 'documentation'} |
Need to update the release.yml workflow to include the patterns like here: https://github.com/eclipse-zenoh/zenoh-python/blob/main/.github/workflows/release.yml#L52-L54 |
|
||
if [[ -n $bump_deps_branch ]]; then | ||
toml_set_in_place Cargo.toml "workspace.dependencies.$dep.branch" "$bump_deps_branch" | ||
fi |
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.
As mentioned on Discord, this needs update as well similar to how it's done for zenoh-c opaque-types: https://github.com/eclipse-zenoh/zenoh-c/blob/main/ci/scripts/bump-and-tag.bash#L76, so https://github.com/eclipse-zenoh/zenoh-ts/blob/main/zenoh-plugin-remote-api/Cargo.toml#L91 gets bumped too.
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.
Added update of package.metadata.deb.depends
cargo check | ||
|
||
if [[ -n $bump_deps_version || -n $bump_deps_branch ]]; then | ||
git commit Cargo.toml Cargo.lock -m "chore: Bump $bump_deps_pattern version to $bump_deps_version" |
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 think you also have to commit the change of the zenoh-plugin-remote-api/Cargo.toml file
No description provided.