-
Notifications
You must be signed in to change notification settings - Fork 0
/
code-analysis.yaml
55 lines (47 loc) · 1.09 KB
/
code-analysis.yaml
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
trigger:
batch: true
branches:
include:
- main
pr:
branches:
include:
- main
schedules:
- cron: '0 0 * * 0'
displayName: Weekly build
branches:
include:
- main
always: true
resources:
repositories:
- repository: OpsGuildAutomationRepo
type: git
name: DevOps/opsguild.automation
ref: refs/heads/main
- repository: templates
type: github
name: AVEVA/AVEVA-Samples
endpoint: AVEVA
variables:
- name: analysisProject
value: BartIngress_DotNet
jobs:
- template: '/miscellaneous/build_templates/code-analysis.yml@templates'
parameters:
buildSteps:
- task: UseDotNet@2
displayName: 'Install dotnet 6'
inputs:
packageType: 'sdk'
version: '6.x'
- task: DotNetCoreCLI@2
displayName: 'Nuget restore'
inputs:
command: restore
- task: DotNetCoreCLI@2
displayName: 'Build'
inputs:
command: build
- template: '/miscellaneous/build_templates/binskim.yml@templates'