-
Notifications
You must be signed in to change notification settings - Fork 762
Expand file tree
/
Copy path.ado.yml
More file actions
55 lines (46 loc) · 1.11 KB
/
.ado.yml
File metadata and controls
55 lines (46 loc) · 1.11 KB
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:
- main
pr:
- main
jobs:
- job: PerfView_Debug
pool:
vmImage: 'windows-2022'
name: Azure Pipelines
demands:
- msbuild
- vstest
steps:
- template: /.pipelines/perfview-job.yml
parameters:
flavor: 'Debug'
- task: PublishPipelineArtifact@1
displayName: 'Publish Artifacts'
inputs:
targetPath: '$(build.artifactstagingdirectory)'
artifact: 'PerfViewBinaries-Debug'
parallel: true
condition: succeededOrFailed()
- job: PerfView_Release
pool:
vmImage: 'windows-2022'
name: Azure Pipelines
demands:
- msbuild
- vstest
steps:
- template: /.pipelines/perfview-job.yml
parameters:
flavor: 'Release'
- task: PublishPipelineArtifact@1
displayName: 'Publish Artifact'
inputs:
targetPath: '$(build.artifactstagingdirectory)'
artifact: 'PerfViewBinaries-Release'
parallel: true
- job: PerfCollect
pool:
vmImage: 'ubuntu-latest'
name: Azure Pipelines
steps:
- template: /.pipelines/perfcollect-job.yml