Skip to content

Commit

Permalink
Fix workloads build by bringing back some needed variables
Browse files Browse the repository at this point in the history
dotnet#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.
  • Loading branch information
steveisok committed Mar 18, 2024
1 parent 21cfd9f commit b47206c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions eng/pipelines/mono/templates/workloads-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ jobs:
value: '/p:OfficialBuildId=$(Build.BuildNumber)'
- name: SignType
value: $[ coalesce(variables.OfficialSignType, 'real') ]
- name: monoRepoRoot
value: '$(Build.SourcesDirectory)/src/mono'
- name: workloadPackagesPath
value: $(Build.SourcesDirectory)/artifacts/workloadPackages
- name: workloadArtifactsPath
value: $(Build.SourcesDirectory)/artifacts/workloads
- ${{ parameters.variables }}

steps:
Expand Down

0 comments on commit b47206c

Please sign in to comment.