From abc2839cc25d621b3d3939fd4d6214fa12d4ac2c Mon Sep 17 00:00:00 2001 From: Adeel Mujahid Date: Sat, 14 Mar 2020 05:49:11 +0200 Subject: [PATCH] Update artifactName prefix for GCC publish log task (#33573) --- 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 b008e3a..83308bb 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 @@ -211,6 +215,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() -- 2.7.4