forked from dotnet/roslyn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-integration.yml
105 lines (100 loc) · 2.69 KB
/
azure-pipelines-integration.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Branches that trigger a build on commit
trigger:
branches:
include:
- main
- main-vs-deps
- release/*
- features/*
- demos/*
exclude:
# Since the version of VS on the integration VM images are a moving target,
# we are unable to reliably run integration tests on servicing branches.
- release/dev17.0-vs-deps
- release/dev17.2
- release/dev17.3
# Branches that trigger builds on PR
pr:
branches:
include:
- main
- main-vs-deps
- release/*
- features/*
- demos/*
exclude:
# Since the version of VS on the integration VM images are a moving target,
# we are unable to reliably run integration tests on servicing branches.
- release/dev17.0-vs-deps
- release/dev17.2
- release/dev17.3
paths:
exclude:
- docs/*
- eng/config/OptProf.json
- eng/config/PublishData.json
- .vscode/*
- .github/*
- .devcontainer/*
- .git-blame-ignore-revs
- .vsconfig
- CODE-OF-CONDUCT.md
- CONTRIBUTING.md
- README.md
- src/Compilers/*
- src/Features/LanguageServer/Microsoft.CommonLanguageServerProtocol.Framework/README.md
variables:
- name: Codeql.Enabled
value: false
- name: Codeql.SkipTaskAutoInjection
value: true
parameters:
- name: poolName
displayName: Pool Name
type: string
default: NetCore-Public
values:
- NetCore-Public
- NetCore-Svc-Public
- name: queueName
displayName: Queue Name
type: string
default: windows.vs2022preview.scout.amd64.open
values:
- windows.vs2022.amd64.open
- windows.vs2022.scout.amd64.open
- windows.vs2022preview.amd64.open
- windows.vs2022preview.scout.amd64.open
- name: timeout
displayName: Timeout in Minutes
type: number
default: 150
stages:
- template: eng/pipelines/test-integration-helix.yml
parameters:
poolName: ${{ parameters.poolName }}
queueName: ${{ parameters.queueName }}
timeout: ${{ parameters.timeout }}
configuration: Debug
testRuns:
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- oop64bit: false
lspEditor: false
runName: VS_Integration_Debug_32
- oop64bit: true
lspEditor: false
runName: VS_Integration_Debug_64
- template: eng/pipelines/test-integration-helix.yml
parameters:
poolName: ${{ parameters.poolName }}
queueName: ${{ parameters.queueName }}
timeout: ${{ parameters.timeout }}
configuration: Release
testRuns:
- oop64bit: false
lspEditor: false
runName: VS_Integration_Release_32
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- oop64bit: true
lspEditor: false
runName: VS_Integration_Release_64