forked from dotnet/roslyn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines-integration-lsp.yml
76 lines (71 loc) · 1.98 KB
/
azure-pipelines-integration-lsp.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
# 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
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.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: false
lspEditor: true
runName: VS_Integration_LSP_Debug_64