-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[engsys] Enable credscan in PR/Ci #20312
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,16 +67,25 @@ jobs: | |
| ServiceDirectory: ${{ parameters.ServiceDirectory }} | ||
| TestPipeline: ${{ parameters.TestPipeline }} | ||
|
|
||
| - ${{ if ne(parameters.RunUnitTests, false) }}: | ||
| - template: /eng/common/pipelines/templates/jobs/archetype-sdk-tests-generate.yml | ||
| parameters: | ||
| JobTemplatePath: /eng/pipelines/templates/jobs/ci.tests.yml | ||
| MatrixConfigs: ${{ parameters.MatrixConfigs }} | ||
| MatrixFilters: ${{ parameters.MatrixFilters }} | ||
| MatrixReplace: ${{ parameters.MatrixReplace }} | ||
| CloudConfig: | ||
| Cloud: Public | ||
| AdditionalParameters: | ||
| - job: Compliance | ||
| pool: | ||
| name: azsdk-pool-mms-win-2019-general | ||
| vmImage: MMS2019 | ||
| steps: | ||
| - template: /eng/common/pipelines/templates/steps/credscan.yml | ||
| parameters: | ||
| ServiceDirectory: ${{ parameters.ServiceDirectory }} | ||
| Artifacts: ${{ parameters.Artifacts }} | ||
| TestProxy: ${{ parameters.TestProxy }} | ||
|
|
||
| - ${{ if ne(parameters.RunUnitTests, false) }}: | ||
| - template: /eng/common/pipelines/templates/jobs/archetype-sdk-tests-generate.yml | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks that
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes not only does the indention look off it looks like this is in the incorrect spot. It should be above the Compliance job.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually nevermind about the ordering as this is an entire job template so it can go above or below the Compliance job. However do double check the indention.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is working as expected and indentation is correct. |
||
| parameters: | ||
| JobTemplatePath: /eng/pipelines/templates/jobs/ci.tests.yml | ||
| MatrixConfigs: ${{ parameters.MatrixConfigs }} | ||
| MatrixFilters: ${{ parameters.MatrixFilters }} | ||
| MatrixReplace: ${{ parameters.MatrixReplace }} | ||
| CloudConfig: | ||
| Cloud: Public | ||
| AdditionalParameters: | ||
| ServiceDirectory: ${{ parameters.ServiceDirectory }} | ||
| Artifacts: ${{ parameters.Artifacts }} | ||
| TestProxy: ${{ parameters.TestProxy }} | ||
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.
Don't know enough to approve but just want to say I am very excited to have this!