Skip to content

Commit

Permalink
Use different artifact name for Mono vs CoreCLR (dotnet#2292)
Browse files Browse the repository at this point in the history
Currently during a build-job, we overwrite existing artifacts as CoreCLR
and Mono use the same artifact name. Adding the runtime flavor name as
a differentiator.
  • Loading branch information
ViktorHofer authored Jan 29, 2020
1 parent ec7aac6 commit eb95163
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eng/pipelines/coreclr/templates/build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,6 @@ jobs:
displayName: Publish Logs
inputs:
pathtoPublish: $(Build.SourcesDirectory)/artifacts/log
artifactName: 'BuildLogs_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)'
artifactName: 'BuildLogs_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)'
continueOnError: true
condition: always()
2 changes: 1 addition & 1 deletion eng/pipelines/mono/templates/build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ jobs:
displayName: Publish Logs
inputs:
pathtoPublish: $(Build.SourcesDirectory)/artifacts/log
artifactName: 'BuildLogs_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)'
artifactName: 'BuildLogs_Mono_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)'
continueOnError: true
condition: always()

0 comments on commit eb95163

Please sign in to comment.