ci: Run full tests only on merge queue, add ci/tier-1 and ci/merge labels#2173
Merged
cgwalters merged 2 commits intobootc-dev:mainfrom Apr 27, 2026
Merged
ci: Run full tests only on merge queue, add ci/tier-1 and ci/merge labels#2173cgwalters merged 2 commits intobootc-dev:mainfrom
cgwalters merged 2 commits intobootc-dev:mainfrom
Conversation
Contributor
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
Collaborator
Author
|
OK I had an agent test this out in https://github.com/bootc-dev/ci-sandbox/ and it seems to work well! |
Enable GitHub merge queues for bootc. Heavy integration tests (multi-OS matrix, Testing Farm, COPR builds) are expensive and should not block every PR, but must pass before merging. GitHub Actions CI now has three tiers: - Plain PR: only cheap/fast jobs (build, unit tests, docs). Heavy jobs are skipped but the `required-checks` sentinel still passes. - `ci/tier-1` label: adds centos-10 matrix for package+integration+upgrade. - `ci/merge` label or merge_group: full OS matrix, identical to what the merge queue runs. A `compute-ci-level` job emits dynamic JSON matrices based on the trigger/labels; matrix jobs consume these via `fromJson()`. The `required-checks` sentinel accepts `skipped` as success and uses explicit jq failure reporting instead of the fragile `!`-negation pattern. Packit (COPR builds + Testing Farm) is similarly label-gated: ci/tier-1 for primary targets (centos-10, fedora-44), ci/merge for the full set. Packit is NOT wired into the merge queue as a required check because it embeds the branch name in its check names (`rpm-build:gh-readonly-queue/main/...:target`), making it impractical to enforce via GitHub rulesets. Ref: bootc-dev/infra#143 Assisted-by: OpenCode (Claude Sonnet 4.6) Signed-off-by: Colin Walters <walters@verbum.org>
s390x builds are currently broken. Drop them across all copr_build jobs until the issue is resolved. Assisted-by: OpenCode (Claude Sonnet 4.5) Signed-off-by: Colin Walters <walters@verbum.org>
gursewak1997
approved these changes
Apr 27, 2026
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.
Now that we have a merge queue, change things so we only run cheaper jobs on PRs by default. It's possible to opt in to heavier CI via labels.
Part of bootc-dev/infra#143
Assisted-by: OpenCode (Claude Sonnet 4.5)