dotnet-installer/eng/pipelines/vmr-sync.yml

67 lines
1.5 KiB
YAML
Raw Normal View History

2023-02-01 14:12:20 +00:00
pr: none
2023-02-01 13:40:07 +00:00
trigger:
batch: true
branches:
include:
- main
- release/*
exclude:
- release/*.0.2xx
- release/*.0.3xx
- release/*.0.4xx
2023-02-01 13:40:07 +00:00
resources:
repositories:
- repository: vmr
type: github
name: dotnet/dotnet
endpoint: dotnet
2023-02-02 14:01:28 +00:00
ref: $(Build.SourceBranch)
2023-02-01 13:40:07 +00:00
- repository: 1ESPipelineTemplates
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release
2023-02-01 13:40:07 +00:00
parameters:
- name: vmrBranch
displayName: dotnet/dotnet branch to push to
type: string
2023-02-08 16:40:25 +00:00
default: ' '
2023-02-01 13:40:07 +00:00
variables:
- template: /eng/common/templates-official/variables/pool-providers.yml@self
2023-02-08 16:40:25 +00:00
- ${{ if ne(parameters.vmrBranch, ' ') }}:
2023-02-01 13:52:26 +00:00
- name: VmrBranch
2023-02-08 16:40:25 +00:00
value: ${{ replace(parameters.vmrBranch, ' ', '') }}
2023-02-01 13:52:26 +00:00
- ${{ else }}:
- name: VmrBranch
value: ${{ replace(replace(variables['Build.SourceBranch'], 'refs/heads/', ''), 'refs/pull/', '') }}
extends:
template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
parameters:
sdl:
sourceAnalysisPool:
name: $(DncEngInternalBuildPool)
image: 1es-windows-2022
os: windows
sourceRepositoriesToScan:
exclude:
- repository: vmr
componentgovernance:
sourceScanPath: $(Agent.BuildDirectory)/vmr
ignoreDirectories: $(Agent.BuildDirectory)/vmr/src
stages:
- stage: VMRSynchronization
displayName: VMR Synchronization
jobs:
- template: /eng/pipelines/templates/jobs/vmr-synchronization.yml@self
parameters:
vmrBranch: ${{ variables.VmrBranch }}