-
Notifications
You must be signed in to change notification settings - Fork 104
ceph-pull-requests: omit run-rbd-unit-tests unless pr matches @ceph/rbd codeowner #2361
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
Open
cbodley
wants to merge
8
commits into
ceph:main
Choose a base branch
from
cbodley:wip-70993
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ba26a83
scripts: extract pr_filenames_changed() from pr_only_for()
cbodley 7efc732
scripts: add pr_matches_codeowner()
cbodley 62111a5
scripts: use codeowner matching for docs/containers
cbodley e1efd3d
scripts: log filename/pattern on matching failure
cbodley 3c2a61f
ceph-pull-requests: omit run-rbd-unit-tests unless pr matches @ceph/r…
cbodley 08a6b6f
scripts: add pr_matches_label()
cbodley 63ceb2b
ceph-pull-requests: run rbd unit tests when "rbd" label is present
cbodley fda5bb1
scripts: add test_codeowners.sh
cbodley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| #!/bin/bash | ||
|
|
||
| . build_utils.sh | ||
|
|
||
| test_match() { | ||
| local f=$1 | ||
| local p=$(codeowners_pattern_to_regex "$2") | ||
| if [[ $f =~ $p ]]; then return 0; fi | ||
| return 1 | ||
| } | ||
|
|
||
| # absolute matching | ||
| test_match "/foo/bar" "/foo" || exit 1 | ||
| test_match "/a/foo" "/foo" && exit 1 | ||
| test_match "/foo/bar" "foo/bar" || exit 1 | ||
| test_match "/a/foo/bar" "foo/bar" && exit 1 | ||
| # relative matching | ||
| test_match "/bar" "bar" || exit 1 | ||
| test_match "/foo/bar" "bar" || exit 1 | ||
| test_match "/foobar" "bar" && exit 1 | ||
| test_match "/foo/bar" "ba" && exit 1 | ||
| test_match "/foo/bar" "ar" && exit 1 | ||
| # directory-only matching | ||
| test_match "/foo" "/foo/" && exit 1 | ||
| test_match "/foo/" "/foo/" && exit 1 | ||
| test_match "/foo/bar" "/foo/" || exit 1 | ||
| # asterisk | ||
| test_match "/x" "/*" || exit 1 | ||
| test_match "/xy" "/*" || exit 1 | ||
| test_match "/Ax" "/A*" || exit 1 | ||
| test_match "/Axy" "/A*" || exit 1 | ||
| test_match "/Bx" "/A*" && exit 1 | ||
| test_match "/xA" "/*A" || exit 1 | ||
| test_match "/xyA" "/*A" || exit 1 | ||
| test_match "/xB" "/*A" && exit 1 | ||
| test_match "/AxyzB" "/A*B" || exit 1 | ||
| test_match "/A/B" "/A*B" && exit 1 | ||
| test_match "/AB" "/A*B" || exit 1 | ||
| test_match "/AxB" "/A*B" || exit 1 | ||
| test_match "/AxyzB" "/A*B" || exit 1 | ||
| test_match "/A/B" "/A*B" && exit 1 | ||
| test_match "/x.y" "/*.*" || exit 1 | ||
| test_match "/x." "/*.*" || exit 1 | ||
| test_match "/.y" "/*.*" || exit 1 | ||
| # question | ||
| test_match "/AxB" "A?B" || exit 1 | ||
| test_match "/AB" "A?B" && exit 1 | ||
| test_match "/AxxB" "A?B" && exit 1 | ||
| test_match "/A/B" "A?B" && exit 1 | ||
| # double-asterisk | ||
| test_match "/foo" "**/foo" || exit 1 | ||
| test_match "/x/foo" "**/foo" || exit 1 | ||
| test_match "/x/y/foo" "**/foo" || exit 1 | ||
| test_match "/foo/bar" "**/foo/bar" || exit 1 | ||
| test_match "/x/y/foo/bar" "**/foo/bar" || exit 1 | ||
| test_match "/x/y/bar" "**/foo/bar" && exit 1 | ||
| test_match "/abc/" "abc/**" || exit 1 | ||
| test_match "/abc/x" "abc/**" || exit 1 | ||
| test_match "/abc/x/y" "abc/**" || exit 1 | ||
| test_match "/foo/abc/" "abc/**" && exit 1 | ||
| test_match "/a/b" "a/**/b" || exit 1 | ||
| test_match "/a/x/b" "a/**/b" || exit 1 | ||
| test_match "/a/x/y/b" "a/**/b" || exit 1 | ||
| test_match "/foo/a/x/y/b" "a/**/b" && exit 1 | ||
|
|
||
| echo "all tests passed" |
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.
Uh oh!
There was an error while loading. Please reload this page.