-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathdotnet-core-internal-testing.yml
More file actions
55 lines (51 loc) · 1.65 KB
/
Copy pathdotnet-core-internal-testing.yml
File metadata and controls
55 lines (51 loc) · 1.65 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:
batch: true
branches:
include:
- testing/*
paths:
include:
- manifest.json
- manifest.versions.json
- src/*
pr: none
parameters:
- name: sourceBuildPipelineRunId
displayName: >
Source build pipeline run ID. This refers to runs of *this pipeline*.
Override this parameter in combination with disabling the `Build` stage to
test images that were built in a different pipeline run. When building new
images, leave this value alone.
type: string
default: $(Build.BuildId)
variables:
- template: /eng/pipelines/variables/internal-core.yml@self
parameters:
sourceBuildPipelineRunId: ${{ parameters.sourceBuildPipelineRunId }}
- name: IsInternalServicingValidation
value: true
resources:
repositories:
- repository: VersionsRepo
type: github
endpoint: dotnet
name: dotnet/versions
ref: ${{ variables['gitHubVersionsRepoInfo.branch'] }}
extends:
template: /eng/common/templates/1es-official.yml@self
parameters:
serviceConnections:
- name: $(internal-mirror.serviceConnectionName)
- name: $(build.serviceConnectionName)
- name: $(publish.serviceConnectionName)
- name: $(kusto.serviceConnectionName)
- name: $(marStatus.serviceConnectionName)
stages:
- template: stages/build-test-publish-repo.yml
parameters:
internalProjectName: ${{ variables.internalProjectName }}
publicProjectName: ${{ variables.publicProjectName }}
versionsRepoRef: VersionsRepo
sourceBuildPipelineRunId: ${{ parameters.sourceBuildPipelineRunId }}
isInternalServicingValidation: ${{ variables.IsInternalServicingValidation }}
noCache: true