forked from dotnet/xharness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines-codeql.yml
58 lines (51 loc) · 1.37 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
49
50
51
52
53
54
55
56
57
58
parameters:
# Optionally do not publish to TSA. Useful for e.g. verifying fixes before PR.
- name: TSAEnabled
displayName: Publish results to TSA
type: boolean
default: true
variables:
- template: /eng/common/templates/variables/pool-providers.yml
# CG is handled in the primary CI pipeline
- name: skipComponentGovernanceDetection
value: true
# Force CodeQL enabled so it may be run on any branch
- name: Codeql.Enabled
value: true
# Do not let CodeQL 3000 Extension gate scan frequency
- name: Codeql.Cadence
value: 0
# CodeQL needs this plumbed along as a variable to enable TSA
- name: Codeql.TSAEnabled
value: ${{ parameters.TSAEnabled }}
- template: eng/common-variables.yml
- name: Build.Repository.Clean
value: true
- name: _BuildConfig
value: Release
trigger: none
schedules:
- cron: 0 12 * * 1
displayName: Weekly Monday CodeQL/Semmle run
branches:
include:
- main
always: true
jobs:
- job: CodeQL
timeoutInMinutes: 90
pool:
name: $(DncEngInternalBuildPool)
demands: ImageOverride -equals 1es-windows-2019
displayName: "CodeQL Scan"
steps:
- task: CodeQL3000Init@0
displayName: CodeQL Initialize
- script: eng/common/CIBuild.cmd
-configuration $(_BuildConfig)
-prepareMachine
/p:Test=false
name: Build
displayName: Build
- task: CodeQL3000Finalize@0
displayName: CodeQL Finalize