forked from dotnet/templating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-codeql.yml
48 lines (43 loc) · 1.44 KB
/
azure-pipelines-codeql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
variables:
- name: _TeamName
value: DotNetCore
- group: SDL_Settings
trigger: none
schedules:
- cron: 17 12 * * 0
displayName: Weekly Sunday at 12:17 CodeQL/Semmle run
branches:
include:
- main
always: true
stages:
- stage: build
displayName: Build
# Three phases for each of the three OSes we want to run on
jobs:
- template: /eng/common/templates/jobs/codeql-build.yml
parameters:
jobs:
- job: Windows_NT_CSharp
timeoutInMinutes: 90
pool:
name: NetCore1ESPool-Internal
demands: ImageOverride -equals windows.vs2019.amd64
steps:
- checkout: self
clean: true
- template: /eng/common/templates/steps/execute-codeql.yml
parameters:
executeAllSdlToolsScript: 'eng/common/sdl/execute-all-sdl-tools.ps1'
buildCommands: '.\build.cmd -configuration Release -prepareMachine /p:Test=false /p:Sign=false'
language: csharp
additionalParameters: '-SourceToolsList @("semmle")
-TsaInstanceURL $(_TsaInstanceURL)
-TsaProjectName $(_TsaProjectName)
-TsaNotificationEmail $(_TsaNotificationEmail)
-TsaCodebaseAdmin $(_TsaCodebaseAdmin)
-TsaBugAreaPath $(_TsaBugAreaPath)
-TsaIterationPath $(_TsaIterationPath)
-TsaRepositoryName "Arcade"
-TsaCodebaseName "Arcade"
-TsaPublish $False'