Make synchronization job names unique (#18407)
This commit is contained in:
parent
44c6d9a544
commit
a39a27e82d
2 changed files with 7 additions and 1 deletions
|
@ -2,6 +2,10 @@
|
|||
### It synchronizes the content of the VMR to this new commit and pushes the changes
|
||||
|
||||
parameters:
|
||||
- name: jobName
|
||||
displayName: Name of the pipeline job
|
||||
type: string
|
||||
|
||||
- name: targetRef
|
||||
displayName: Target revision of dotnet/installer to synchronize
|
||||
type: string
|
||||
|
@ -18,7 +22,7 @@ parameters:
|
|||
default: false
|
||||
|
||||
jobs:
|
||||
- job: Synchronize_VMR
|
||||
- job: ${{ parameters.jobName }}
|
||||
displayName: Synchronize dotnet/dotnet
|
||||
timeoutInMinutes: 120
|
||||
variables:
|
||||
|
|
|
@ -36,8 +36,10 @@ variables:
|
|||
jobs:
|
||||
- template: /eng/pipelines/templates/jobs/vmr-synchronization.yml
|
||||
parameters:
|
||||
name: Synchronize_VMR
|
||||
vmrBranch: ${{ variables.VmrBranch }}
|
||||
|
||||
- template: /eng/pipelines/templates/jobs/vmr-synchronization.yml
|
||||
parameters:
|
||||
name: Synchronize_VMR_uncloacked
|
||||
vmrBranch: ${{ variables.VmrBranch }}-ub
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue