-
-
Notifications
You must be signed in to change notification settings - Fork 25
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
configure branches to build in addition to default branch #304
Comments
I think a list of regexes in the nixos configuration would be the best. Pull requests welcome. |
After checking again, we actually shouldn't make it a list but a single regex. buildbot-nix/buildbot_nix/__init__.py Line 1257 in d2dd93e
You will need to extend this object: buildbot-nix/buildbot_nix/models.py Line 175 in d2dd93e
and add a nixos option similar to other configuration. Use We have checks for "default_branch" in several places, you might need to grep and see if we need to allow also non-default branches that matches the regex or not. |
Will tackle this now and tomorrow |
I'm tackling this in a way where we split branches into 3 groups:
not sure if the primary/secondary split is needed, but not hard to do, we can rip it out later. (we'll have to rewrite this anyway, i really do not like that this is global for the whole instance. I think we should prioritize per repo configs finally ) |
i'm working on repositories that have continuous delivery pipelines based on multiple branches.
for this to work with buildbot-nix there needs to be an option that takes a list of branch names that buildbot will consider acting upon exactly in the same way it does for the default branch.
The text was updated successfully, but these errors were encountered: