From fc463550ed7f23e3fa30962292446793526e6d8a Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Mon, 18 Mar 2024 19:38:54 -0400 Subject: [PATCH] Fix workloads build by bringing back some needed variables (#99932) https://github.com/dotnet/runtime/pull/99179 made some changes and switched the template the workloads build was using. In the process, workloadArtifactsPath and workloadPackagesPath got dropped, which meant the workloads build did not pick up any manifests to process. As a result, the build failed. --- eng/pipelines/mono/templates/workloads-build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eng/pipelines/mono/templates/workloads-build.yml b/eng/pipelines/mono/templates/workloads-build.yml index 4824f2f1203f2..f046c33fbf1b8 100644 --- a/eng/pipelines/mono/templates/workloads-build.yml +++ b/eng/pipelines/mono/templates/workloads-build.yml @@ -42,6 +42,10 @@ jobs: value: '/p:OfficialBuildId=$(Build.BuildNumber)' - name: SignType value: $[ coalesce(variables.OfficialSignType, 'real') ] + - name: workloadPackagesPath + value: $(Build.SourcesDirectory)/artifacts/workloadPackages + - name: workloadArtifactsPath + value: $(Build.SourcesDirectory)/artifacts/workloads - ${{ parameters.variables }} steps: