forked from dotnet/roslyn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines-integration-corehost.yml
103 lines (97 loc) · 2.71 KB
/
azure-pipelines-integration-corehost.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
# Separate pipeline from normal integration CI to allow branches to change legs
# 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 are allowed to trigger a build via /azp run.
# Automatic building of all PRs is disabled in the pipeline's trigger page.
# See https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#comment-triggers
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/*
- src/Compilers/*
- .git-blame-ignore-revs
- .vsconfig
- CODE-OF-CONDUCT.md
- CONTRIBUTING.md
- 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:
- oop64bit: true
oopCoreClr: true
lspEditor: false
runName: VS_Integration_CoreHost_Debug
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- template: eng/pipelines/test-integration-helix.yml
parameters:
poolName: ${{ parameters.poolName }}
queueName: ${{ parameters.queueName }}
timeout: ${{ parameters.timeout }}
configuration: Release
testRuns:
- oop64bit: true
oopCoreClr: true
lspEditor: false
runName: VS_Integration_CoreHost_Release