Skip to content

Commit b95cdcf

Browse files
Print additional result summary formats to pipelines UI (#3842)
Co-authored-by: Mike Harder <[email protected]>
1 parent c3ecbcd commit b95cdcf

File tree

1 file changed

+12
-0
lines changed
  • eng/common/pipelines/templates/jobs

1 file changed

+12
-0
lines changed

eng/common/pipelines/templates/jobs/perf.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,24 @@ jobs:
106106
${{ var.key }}: ${{ var.value }}
107107
displayName: Run perf tests
108108
109+
- pwsh: |
110+
get-content results.txt
111+
workingDirectory: azure-sdk-tools/tools/perf-automation/Azure.Sdk.Tools.PerfAutomation/results
112+
displayName: Print results.txt
113+
condition: always()
114+
109115
- pwsh: |
110116
get-content results.csv
111117
workingDirectory: azure-sdk-tools/tools/perf-automation/Azure.Sdk.Tools.PerfAutomation/results
112118
displayName: Print results.csv
113119
condition: always()
114120
121+
- pwsh: |
122+
get-content results.md
123+
workingDirectory: azure-sdk-tools/tools/perf-automation/Azure.Sdk.Tools.PerfAutomation/results
124+
displayName: Print results.md
125+
condition: always()
126+
115127
- pwsh: |
116128
get-content results.json
117129
workingDirectory: azure-sdk-tools/tools/perf-automation/Azure.Sdk.Tools.PerfAutomation/results

0 commit comments

Comments
 (0)