From e929856ef950a12a60e7482b7dd178668894ca10 Mon Sep 17 00:00:00 2001 From: Adeel Date: Fri, 13 Mar 2020 20:45:27 +0000 Subject: [PATCH] Update artifactName prefix for GCC publish log task --- eng/pipelines/coreclr/templates/build-job.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eng/pipelines/coreclr/templates/build-job.yml b/eng/pipelines/coreclr/templates/build-job.yml index b774a7bf2b5edc..d52a3771927dc7 100644 --- a/eng/pipelines/coreclr/templates/build-job.yml +++ b/eng/pipelines/coreclr/templates/build-job.yml @@ -64,11 +64,15 @@ jobs: value: '' - name: gccArg value: '' + - name: publishLogsArtifactPrefix + value: 'BuildLogs_CoreCLR' - ${{ if eq(parameters.useGCC, true) }}: - name: gccArg value: '-gcc' - name: clangArg value: '' + - name: publishLogsArtifactPrefix + value: 'BuildLogs_CoreCLR_GCC' # workaround for gcc directory not in PATH - name: CLR_CC value: /opt/rh/devtoolset-7/root/usr/bin/gcc @@ -209,6 +213,6 @@ jobs: displayName: Publish Logs inputs: targetPath: $(Build.SourcesDirectory)/artifacts/log - artifactName: 'BuildLogs_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)' + artifactName: '$(publishLogsArtifactPrefix)_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)' continueOnError: true condition: always()