Skip to content

Commit 3fcf03a

Browse files
authored
Disable the build look-up during VMR sync (#45325)
1 parent d8eb5a6 commit 3fcf03a

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

eng/pipelines/templates/steps/vmr-pull-updates.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,6 @@ steps:
4343
workingDirectory: ${{ parameters.vmrPath }}
4444

4545
- script: |
46-
enable_build_lookup=''
47-
if [ "$(Build.Reason)" != 'PullRequest' ] && [ "$(System.TeamProject)" == 'internal' ]; then
48-
enable_build_lookup='--enable-build-lookup'
49-
fi
50-
5146
./eng/vmr-sync.sh \
5247
--vmr ${{ parameters.vmrPath }} \
5348
--tmp $(Agent.TempDirectory) \
@@ -58,7 +53,6 @@ steps:
5853
--remote "sdk:$(Agent.BuildDirectory)/sdk" \
5954
--component-template $(Agent.BuildDirectory)/sdk/src/VirtualMonoRepo/Component.template.md \
6055
--tpn-template $(Agent.BuildDirectory)/sdk/src/VirtualMonoRepo/THIRD-PARTY-NOTICES.template.txt \
61-
$enable_build_lookup \
6256
--ci \
6357
--debug
6458
@@ -75,11 +69,6 @@ steps:
7569
condition: eq(variables['Agent.OS'], 'Windows_NT')
7670

7771
- powershell: |
78-
$enableBuildLookup = ""
79-
if ('$(Build.Reason)' -ne 'PullRequest' -and '$(System.TeamProject)' -eq 'internal') {
80-
$enableBuildLookup = "--enable-build-lookup"
81-
}
82-
8372
./eng/vmr-sync.ps1 `
8473
-vmr ${{ parameters.vmrPath }} `
8574
-tmp $(Agent.TempDirectory) `
@@ -89,7 +78,6 @@ steps:
8978
-recursive `
9079
-componentTemplate $(Agent.BuildDirectory)/sdk/src/VirtualMonoRepo/Component.template.md `
9180
-tpnTemplate $(Agent.BuildDirectory)/sdk/src/VirtualMonoRepo/THIRD-PARTY-NOTICES.template.txt `
92-
$enableBuildLookup `
9381
-ci `
9482
-debugOutput
9583

0 commit comments

Comments
 (0)