diff --git a/build/pipelines/templates/build-console-pgo.yml b/build/pipelines/templates/build-console-pgo.yml index 201bb75012a..8af4ec5d86c 100644 --- a/build/pipelines/templates/build-console-pgo.yml +++ b/build/pipelines/templates/build-console-pgo.yml @@ -48,3 +48,4 @@ jobs: dependsOn: - ProcessTestResults pgoArtifact: 'PGO' + platform: ${{ parameters.platform }} diff --git a/build/pipelines/templates/pgo-merge-pgd-job.yml b/build/pipelines/templates/pgo-merge-pgd-job.yml index c00bc42e8a5..970ef68a574 100644 --- a/build/pipelines/templates/pgo-merge-pgd-job.yml +++ b/build/pipelines/templates/pgo-merge-pgd-job.yml @@ -1,6 +1,7 @@ parameters: dependsOn: '' pgoArtifact: PGO + platform: '' jobs: - job: MergePGD @@ -10,6 +11,7 @@ jobs: variables: artifactsPath: $(Build.SourcesDirectory)\Artifacts pgoArtifactsPath: $(artifactsPath)\${{ parameters.pgoArtifact }} + buildPlatform: ${{ parameters.platform }} steps: # The environment variable VCToolsInstallDir isn't defined on lab machines, so we need to retrieve it ourselves.