Skip to content
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

bloom releases dropped packages which still have branches in the release repository. #737

Open
nuclearsandwich opened this issue Jul 13, 2024 · 0 comments

Comments

@nuclearsandwich
Copy link
Contributor

I'll leave my ros_ign-release fork up as an example, but bloom uses existing branch names to find which packages to generate for, which means that packages dropped from a distribution are still released:

for branch in self.branches:
package = get_package_from_branch(branch)
if package is None:
# This is an ignored package
continue
self.packages[package.name] = package
self.names.append(package.name)
args = self.generate_branching_arguments(package, branch)
# First branch is debian/[<rosdistro>/]<package>
self.debian_branches.append(args[0][0])
self.branch_args.extend(args)

The way to mitigate this is to add a $TRACK.ignored file and ignore the defunct packages. Placing a COLCON_IGNORE or CATKIN_IGNORE in the upstream repo instead of removing the directory completely may also work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant