-
Notifications
You must be signed in to change notification settings - Fork 177
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
Move supporting matrix generator assets out of eng/common
#5027
Conversation
The following pipelines have been queued for testing: |
eng/common
eng/common
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor updates to the doc to point to the new test location. Otherwise LGTM, thanks!
Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
The following pipelines have been queued for testing: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Split looks good. Might need to update a couple paths in the docs file though.
The following pipelines have been queued for testing: |
Hello @azure-sdk! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
…ake the tests runnable by `common-tests/ci.yml`. (#5095) This PR fixes paths I forgot to update when I did this PR: - #5027 And as such this PR contributes to addressing: - #4995 It also adds `UnitTest` tags to the `matrix-generator` tests so [`common-tests/ci.yml` pipeline](https://dev.azure.com/azure-sdk/internal/_build?definitionId=5809) executes them. ### Related work - #5098
This PR contributes to addressing:
by moving out of
eng/common/scripts/job-matrix
assets that should not be mirrored to language repos. These assets include documentation, samples, and tests.Changes made
eng/common/scripts/job-matrix/README.md
to newly introduceddoc/common/matrix_generator.md
;eng/common/scripts/job-matrix/README.md
with a pointer todoc/common/matrix_generator.md
;eng/common/scripts/job-matrix/scripts
andeng/common/scripts/job-matrix/tests
to corresponding directories in newly introduced directory ofeng/common-tests/matrix-generator
.Note the introduced directory and doc file use
matrix generator
as name, notjob matrix
. This matches the terminology used in the documentation.Changes NOT made
scripts
andtests
directories have not been updated at all. The files have been moved unchanged.README.md
have not been updated, even though they should, as they refer to paths that have changed as a result of the move. To keep the PR diff clean, I will instead update them in a separate PR:doc/common/matrix_generator.md
: review and rewrite for clarity #5023