From ce35caa6f2b8d7d691f704b8e9e7ded176530392 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Thu, 3 Jan 2019 14:40:46 -0800 Subject: [PATCH] Publish OptProf Data files This publishes the OptProf Data files during an official build. This just allows for us to easily inspect the results without having to do a download from the drop server. --- azure-pipelines-official.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/azure-pipelines-official.yml b/azure-pipelines-official.yml index 3f512b30159..c33f312c1f6 100644 --- a/azure-pipelines-official.yml +++ b/azure-pipelines-official.yml @@ -69,6 +69,15 @@ jobs: displayName: 'OPTPROF - Publish to Artifact Services - ProfilingInputs' condition: succeededOrFailed() + # Publish OptProf generated JSON files as a build artifact. This allows for easy inspection from + # a build execution. + - task: PublishBuildArtifacts@1 + displayName: Publish OptProf Data Files + inputs: + PathtoPublish: '$(Build.SourcesDirectory)\artifacts\OptProf\$(BuildConfiguration)\Data' + ArtifactName: 'OptProf Data Files' + condition: succeeded() + # Created a exe that will install visual studio with this version - task: PowerShell@2 inputs: -- GitLab