Add support to exclude architectures and repositories#111
Merged
Conversation
79d3165 to
7024da2
Compare
refi64
reviewed
May 8, 2026
75a3cba to
acfd951
Compare
There was a problem hiding this comment.
Pull request overview
Adds optional architecture/repository exclusion lists to the dput workflow so specific builds can be ignored and won’t block the pipeline.
Changes:
- Extend
BuildMetaOptionswithexclude_arch/exclude_repofilters and apply them when enumerating repo/arch build targets. - Add
--exclude-archand--exclude-repoCLI arguments todputand pass them intoBuildMetaretrieval. - Expand
BuildMetatests to cover exclusion behavior and multi-repo scenarios.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| obo-test-support/src/lib.rs | Adds an extra test repository constant to support new exclusion-related tests. |
| obo-core/src/build_meta.rs | Implements exclude filtering in metadata collection and extends test coverage for excluded arches/repos. |
| obo-core/src/actions.rs | Adds new dput CLI flags and wires them into BuildMetaOptions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
acfd951 to
c4a1469
Compare
In some use cases there is no point in monitoring for architectures as the build status should not block a pipeline. To support these scenarios implement a new argument for dput to exclude architectures. Signed-off-by: Walter Lozano <walter.lozano@collabora.com>
In some use cases there is no point in monitoring for repositories as the build status should not block a pipeline. To support these scenarios implement a new argument for dput to exclude repos. Signed-off-by: Walter Lozano <walter.lozano@collabora.com>
c4a1469 to
e18a56c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In some use cases it is useful to exclude architectures and repositories as those builds should not block a pipeline. To allow that add a set of new arguments to dput.