From b4a7005e14cda4f4e23127373541274b0a51cf1e Mon Sep 17 00:00:00 2001 From: Tim Mulholland Date: Mon, 26 Oct 2020 21:38:01 -0700 Subject: [PATCH 1/2] Remove unused steps from build process --- azure-pipelines.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 609dac2f9..fc2a76b12 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -57,9 +57,8 @@ stages: jobs: - template: /eng/common/templates/jobs/jobs.yml parameters: - enablePublishUsingPipelines: true enablePublishBuildArtifacts: true - enablePublishTestResults: true + testResultsFormat: xunit enableTelemetry: true helixRepo: dotnet/HttpRepl # enableMicrobuild can't be read from a user-defined variable (Azure DevOps limitation) @@ -120,15 +119,6 @@ stages: parallel: true pathtoPublish: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)' publishLocation: Container - - task: PublishBuildArtifacts@1 - displayName: Publish Logs - condition: always() - continueOnError: true - inputs: - artifactName: Logs_$(Agent.Os)_$(Agent.JobName) - parallel: true - pathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' - publishLocation: Container - job: macOS pool: From 99dcbed6fed2173c479548b44c34a09e0feec34d Mon Sep 17 00:00:00 2001 From: Tim Mulholland Date: Mon, 26 Oct 2020 22:05:51 -0700 Subject: [PATCH 2/2] Also remove from linux/macOS --- azure-pipelines.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fc2a76b12..6d94eab34 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -142,15 +142,6 @@ stages: name: Build displayName: Build condition: succeeded() - - task: PublishBuildArtifacts@1 - displayName: Publish Logs - condition: always() - continueOnError: true - inputs: - artifactName: Logs_$(Agent.Os)_$(Agent.JobName) - parallel: true - pathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' - publishLocation: Container - job: Linux pool: @@ -175,12 +166,3 @@ stages: name: Build displayName: Build condition: succeeded() - - task: PublishBuildArtifacts@1 - displayName: Publish Logs - condition: always() - continueOnError: true - inputs: - artifactName: Logs_$(Agent.Os)_$(Agent.JobName) - parallel: true - pathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' - publishLocation: Container