ci: update test composes [citest_skip]#366
Merged
richm merged 1 commit intolinux-system-roles:mainfrom Mar 19, 2026
Merged
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's Guide.gitlab-ci.yml test matrix updated to point RHEL 9 and 10 CI jobs at newer nightly composes and corresponding distro identifiers for "Next" and "CurrentRelease" variants. Flow diagram for COMPOSE_NAME to updated RHEL nightly mappings in .gitlab-ci.ymlflowchart TD
Start[Start CI job]
CName[Read COMPOSE_NAME]
Start --> CName
CName -->|Rhel10Next| R10NextVars[Set variables for Rhel10Next]
CName -->|Rhel10CurrentRelease| R10CurVars[Set variables for Rhel10CurrentRelease]
CName -->|Rhel9Next| R9NextVars[Set variables for Rhel9Next]
CName -->|Rhel9CurrentRelease| R9CurVars[Set variables for Rhel9CurrentRelease]
subgraph Rhel10NextConfiguration
R10NextVars --> R10NextTF[TF_COMPOSE = RHEL-10.3-Nightly]
R10NextVars --> R10NextTMTDev[TMT_DEVELOPMENT = true]
R10NextVars --> R10NextTMT[TMT_DISTRO = rhel-10.3]
R10NextVars --> R10NextPCSBranch[PCS_BRANCH = main]
R10NextVars --> R10NextPCSUrl[PCS_ARTIFACTS_URL uses COMPOSE_NAME and PCS_BRANCH]
end
subgraph Rhel10CurrentReleaseConfiguration
R10CurVars --> R10CurTF[TF_COMPOSE = RHEL-10.2-Nightly]
R10CurVars --> R10CurTMT[TMT_DISTRO = rhel-10.2]
R10CurVars --> R10CurPCSBranch[PCS_BRANCH = main]
R10CurVars --> R10CurPCSUrl[PCS_ARTIFACTS_URL uses COMPOSE_NAME and PCS_BRANCH]
end
subgraph Rhel9NextConfiguration
R9NextVars --> R9NextTF[TF_COMPOSE = RHEL-9.9.0-Nightly]
R9NextVars --> R9NextTMTDev[TMT_DEVELOPMENT = true]
R9NextVars --> R9NextTMT[TMT_DISTRO = rhel-9.9]
R9NextVars --> R9NextPCSBranch[PCS_BRANCH = pcs-0.11]
R9NextVars --> R9NextPCSUrl[PCS_ARTIFACTS_URL uses COMPOSE_NAME and PCS_BRANCH]
end
subgraph Rhel9CurrentReleaseConfiguration
R9CurVars --> R9CurTF[TF_COMPOSE = RHEL-9.8.0-Nightly]
R9CurVars --> R9CurTMT[TMT_DISTRO = rhel-9.8]
R9CurVars --> R9CurPCSBranch[PCS_BRANCH = pcs-0.11]
R9CurVars --> R9CurPCSUrl[PCS_ARTIFACTS_URL uses COMPOSE_NAME and PCS_BRANCH]
end
R10NextPCSUrl --> End[Run tests with selected compose]
R10CurPCSUrl --> End
R9NextPCSUrl --> End
R9CurPCSUrl --> End
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- The
PCS_ARTIFACTS_URLand some other variables are repeated verbatim across allrules; consider using YAML anchors/aliases or a shared template to reduce duplication and make future version bumps less error-prone.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The `PCS_ARTIFACTS_URL` and some other variables are repeated verbatim across all `rules`; consider using YAML anchors/aliases or a shared template to reduce duplication and make future version bumps less error-prone.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #366 +/- ##
=======================================
Coverage 90.92% 90.92%
=======================================
Files 19 19
Lines 1212 1212
=======================================
Hits 1102 1102
Misses 110 110 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
tomjelinek
approved these changes
Mar 19, 2026
richm
approved these changes
Mar 19, 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.
Update test composes for GitLab CI.
Summary by Sourcery
Update CI test matrix to use newer RHEL 9 and 10 nightly composes for 'Next' and 'CurrentRelease' pipelines.
CI: