2022-11-08 16:47:32 +00:00
|
|
|
### These steps synchronize new code from product repositories into the VMR (https://github.com/dotnet/dotnet).
|
|
|
|
### They initialize the darc CLI and pull the new updates.
|
|
|
|
### Changes are applied locally onto the already cloned VMR (located in $vmrPath).
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
- name: vmrBranch
|
|
|
|
displayName: dotnet/dotnet branch to use
|
|
|
|
type: string
|
|
|
|
|
|
|
|
- name: targetRef
|
|
|
|
displayName: Target revision in dotnet/installer to synchronize
|
|
|
|
type: string
|
|
|
|
default: $(Build.SourceVersion)
|
|
|
|
|
|
|
|
- name: vmrPath
|
|
|
|
displayName: Path where the dotnet/dotnet is checked out to
|
|
|
|
type: string
|
|
|
|
default: $(Agent.BuildDirectory)/vmr
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout: self
|
|
|
|
displayName: Clone dotnet/installer
|
|
|
|
path: installer
|
|
|
|
|
2022-12-20 18:24:30 +00:00
|
|
|
- script: |
|
2023-02-01 11:11:16 +00:00
|
|
|
git checkout -B ${{ parameters.vmrBranch }}
|
|
|
|
echo "##vso[task.setvariable variable=vmrBranch]${{ parameters.vmrBranch }}"
|
2022-11-08 16:47:32 +00:00
|
|
|
displayName: Prepare branch ${{ parameters.vmrBranch }}
|
2022-12-01 09:51:39 +00:00
|
|
|
workingDirectory: ${{ parameters.vmrPath }}
|
2022-11-08 16:47:32 +00:00
|
|
|
|
|
|
|
- script: >
|
2023-01-09 13:28:34 +00:00
|
|
|
./eng/vmr-sync.sh
|
2022-11-08 16:47:32 +00:00
|
|
|
--vmr ${{ parameters.vmrPath }}
|
|
|
|
--tmp $(Agent.TempDirectory)
|
2023-02-01 11:11:16 +00:00
|
|
|
--branch ${{ parameters.vmrBranch }}
|
2023-01-09 13:28:34 +00:00
|
|
|
--target-ref ${{ parameters.targetRef }}
|
2022-11-08 16:47:32 +00:00
|
|
|
displayName: Synchronize dotnet/dotnet
|
|
|
|
workingDirectory: $(Agent.BuildDirectory)/installer
|