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
|
|
|
|
|
2023-11-07 15:05:56 +00:00
|
|
|
# This step is needed so that when we get a detached HEAD / shallow clone,
|
|
|
|
# we still pull the commit into the temporary installer clone to use it during the sync.
|
|
|
|
- script: |
|
|
|
|
git branch installer-head
|
|
|
|
displayName: Label PR commit
|
|
|
|
workingDirectory: $(Agent.BuildDirectory)/installer
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
git checkout -B ${{ parameters.vmrBranch }}
|
|
|
|
echo "##vso[task.setvariable variable=vmrBranch]${{ parameters.vmrBranch }}"
|
|
|
|
displayName: Prepare branch ${{ parameters.vmrBranch }}
|
|
|
|
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-08-17 17:27:03 +00:00
|
|
|
--azdev-pat '$(System.AccessToken)'
|
2023-02-01 11:11:16 +00:00
|
|
|
--branch ${{ parameters.vmrBranch }}
|
2023-02-17 16:39:17 +00:00
|
|
|
--repository "installer:${{ parameters.targetRef }}"
|
|
|
|
--recursive
|
2023-03-13 13:44:42 +00:00
|
|
|
--remote "installer:$(pwd)"
|
2024-01-10 09:45:00 +00:00
|
|
|
--component-template $(Agent.BuildDirectory)/installer/src/VirtualMonoRepo/Component.template.md
|
2023-02-08 12:44:25 +00:00
|
|
|
--tpn-template $(Agent.BuildDirectory)/installer/src/VirtualMonoRepo/THIRD-PARTY-NOTICES.template.txt
|
2023-02-13 11:43:27 +00:00
|
|
|
--debug
|
2022-11-08 16:47:32 +00:00
|
|
|
displayName: Synchronize dotnet/dotnet
|
|
|
|
workingDirectory: $(Agent.BuildDirectory)/installer
|