TRIAL - #8200
Closed
chubnastia wants to merge 6 commits into
Closed
Conversation
…e execution
Motivation:
Currently each testing pipeline starts with 30 jobs and 45 minutes
average runtime, which can be inconvenient and wasteful for targeted testing.
Modification:
- Introduced [fast_pass] as a new commit-message trigger to skip all unit test and coverage jobs (via .fast_pass_rules)
- Added `.selective_test_base` and YAML `!reference` rules across integration test jobs:
- If no `[only: ...]` tag is present, all integration test jobs run by default.
- If `[only: <suite>]` is specified, jobs evaluate word boundaries (`\b<suite>\b`) to execute only matching test suites.
- Supported suite tags: `grid`, `frontend`, `xroot`, `webdav`, `nfs`, `oidc`.
Result:
We can now:
- Skip unit tests and coverage: `[fast_pass]`
- Run specific integration suites: `[only: frontend]` or `[only: nfs, grid]`
- Combine both options for targeted testing: `[fast_pass] [only: webdav]`
- Unmodified default pipeline execution if no triggers are present.
- Reduce CI resource usage and speeds up validation for focused changes.
Target: master
Require-book: no
Require-notes: no
chubnastia
marked this pull request as ready for review
September 9, 2026 12:09
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.
TRIAL, not a real PR