Disable SDL and other validation (#7960)
After onboarding to post-build/nightly SDL validation, all this validation is run once a day and so can be removed from the build, saving signficant time.
This commit is contained in:
parent
a5c8f426c2
commit
48ed6f10db
1 changed files with 3 additions and 4 deletions
|
@ -260,14 +260,13 @@ stages:
|
||||||
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
||||||
- template: eng\common\templates\post-build\post-build.yml
|
- template: eng\common\templates\post-build\post-build.yml
|
||||||
parameters:
|
parameters:
|
||||||
# Symbol validation isn't being very reliable lately. This should be enabled back
|
|
||||||
# once this issue is resolved: https://github.com/dotnet/arcade/issues/2871
|
|
||||||
enableSymbolValidation: false
|
enableSymbolValidation: false
|
||||||
# This repo doesn't produce any signed packages.
|
|
||||||
enableSigningValidation: false
|
enableSigningValidation: false
|
||||||
|
enableNugetValidation: false
|
||||||
|
enableSourceLinkValidation: false
|
||||||
publishInstallersAndChecksums: true
|
publishInstallersAndChecksums: true
|
||||||
SDLValidationParameters:
|
SDLValidationParameters:
|
||||||
enable: true
|
enable: false
|
||||||
params: ' -SourceToolsList @("policheck","credscan")
|
params: ' -SourceToolsList @("policheck","credscan")
|
||||||
-TsaInstanceURL $(_TsaInstanceURL)
|
-TsaInstanceURL $(_TsaInstanceURL)
|
||||||
-TsaProjectName $(_TsaProjectName)
|
-TsaProjectName $(_TsaProjectName)
|
||||||
|
|
Loading…
Reference in a new issue