Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.azure/pipelines/ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml
index fba8950073..51f266471a 100644
--- a/.azure/pipelines/ci.yml
+++ b/.azure/pipelines/ci.yml
@@ -177,14 +177,18 @@ stages:
# Ignore the small amount of infrastructure Python code in this repo.
- Codeql.Language: cpp,csharp,java,javascript
- Codeql.ExcludePathPatterns: submodules
+ # Ignore test and infrastructure code.
- Codeql.SourceRoot: src
# CodeQL3000 needs this plumbed along as a variable to enable TSA.
- Codeql.TSAEnabled: ${{ eq(variables['Build.Reason'], 'Schedule') }}
+ # Default expects tsaoptions.json under SourceRoot.
+ - Codeql.TSAOptionsPath: '$(Build.SourcesDirectory)/.config/tsaoptions.json'
beforeBuild:
- - script: "echo ##vso[build.addbuildtag]CodeQL3000"
- displayName: 'Set CI CodeQL3000 tag'
- task: CodeQL3000Init@0
displayName: CodeQL Initialize
+ - script: "echo ##vso[build.addbuildtag]CodeQL3000"
+ displayName: 'Set CI CodeQL3000 tag'
+ condition: ne(variables.CODEQL_DIST,'')
steps:
- script: ./eng/build.cmd
-ci