-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Expand file tree
/
Copy pathazure-pipelines-integration-dartlab.yml
More file actions
76 lines (72 loc) · 2.33 KB
/
Copy pathazure-pipelines-integration-dartlab.yml
File metadata and controls
76 lines (72 loc) · 2.33 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Roslyn VS integration test gate pipeline for real-signed Visual Studio builds.
trigger: none
pr: none
resources:
repositories:
- repository: DartLabTemplates
type: git
name: DevDiv/DartLab.Templates
ref: refs/heads/main
- repository: VSTemplates
type: git
name: DevDiv/VS.Templates
ref: refs/heads/main
- repository: RoslynMirror
endpoint: dnceng-internal-code-access
type: git
name: internal/dotnet-roslyn
ref: $(Build.SourceBranch)
parameters:
- name: prNumber
type: string
default: 'None'
- name: sha
type: string
default: 'None'
- name: EnforceLatestCommit
type: boolean
default: true
- name: visualStudioBootstrapperURI
type: string
default: '(default)'
- name: testCaseFilter
type: string
default: '(all)'
- name: skipCustomRoslynDeploy
type: boolean
default: false
- name: testsCommitHash
type: string
default: '(default)'
- name: testsCommitFromVisualStudioBuild
type: boolean
default: false
# Set to 'stop' if you want to keep the test machines around for investigation after test completion.
- name: testMachineCleanUpStrategy
displayName: Test Machine Clean Up Strategy
type: string
default: delete
values:
- delete
- stop
# The retention period for the test machine (expressed as <Days>:<Hours>:<Minutes>:<Seconds>)
- name: testMachineRetention
displayName: Test Machine Retention (format "D:H:M:S")
type: string
default: 1:0:0:0 # 1 day default
extends:
template: /DartLab/1ES/pipelines/ci/real-sign.yml@VSTemplates
parameters:
testStages:
- template: /eng/pipelines/test-gates/staging/stages.yml@self
parameters:
prNumber: ${{ parameters.prNumber }}
sha: ${{ parameters.sha }}
EnforceLatestCommit: ${{ parameters.EnforceLatestCommit }}
visualStudioBootstrapperURI: ${{ parameters.visualStudioBootstrapperURI }}
testCaseFilter: ${{ parameters.testCaseFilter }}
skipCustomRoslynDeploy: ${{ parameters.skipCustomRoslynDeploy }}
testsCommitHash: ${{ parameters.testsCommitHash }}
testsCommitFromVisualStudioBuild: ${{ parameters.testsCommitFromVisualStudioBuild }}
testMachineCleanUpStrategy: ${{ parameters.testMachineCleanUpStrategy }}
testMachineRetention: ${{ parameters.testMachineRetention }}