Skip to content

Commit b515aa0

Browse files
committed
Pass down IsOfficialBuild variable
1 parent 0f5b16e commit b515aa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/pipelines/templates/jobs/vmr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ jobs:
372372
# TODO: Once we turn off the dotnet/runtime official build, move these templates into the VMR's eng folder.
373373
- template: ${{ variables['Build.SourcesDirectory'] }}/src/runtime/eng/pipelines/coreclr/templates/install-diagnostic-certs.yml
374374
parameters:
375-
isOfficialBuild: true
375+
isOfficialBuild: ${{ variables.isOfficialBuild }}
376376
certNames:
377377
- 'dotnetesrp-diagnostics-aad-ssl-cert'
378378
- 'dotnet-diagnostics-esrp-pki-onecert'
@@ -394,7 +394,7 @@ jobs:
394394
# TODO: Once we turn off the dotnet/runtime official build, move these templates into the VMR's eng folder.
395395
- template: ${{ variables['Build.SourcesDirectory'] }}/src/runtime/eng/pipelines/coreclr/templates/remove-diagnostic-certs.yml
396396
parameters:
397-
isOfficialBuild: true
397+
isOfficialBuild: ${{ variables.isOfficialBuild }}
398398
scriptRoot: '$(Build.SourcesDirectory)/src/runtime'
399399

400400
- ${{ if eq(parameters.runTests, 'True') }}:

0 commit comments

Comments
 (0)