@@ -109,6 +109,8 @@ sources:
109
109
- sebastienros
110
110
template : reliability
111
111
healthCheck : true
112
+ title : >-
113
+ Benchmark stopped running: {% for r in Regressions limit: 4 %}{{ r.CurrentResult.Scenario }}{% if forloop.last == false %}, {% endif %}{% endfor %}
112
114
- name : Native AOT Reliability
113
115
table : NativeAotBenchmarks
114
116
rules :
@@ -121,6 +123,8 @@ sources:
121
123
- sebastienros
122
124
template : reliability
123
125
healthCheck : true
126
+ title : >-
127
+ Benchmark stopped running: {% for r in Regressions limit: 4 %}{{ r.CurrentResult.Scenario }}{% if forloop.last == false %}, {% endif %}{% endfor %}
124
128
125
129
templates :
126
130
rps : |
@@ -267,43 +271,10 @@ templates:
267
271
[PowerBI Dashboard](https://aka.ms/aspnet/benchmarks)
268
272
269
273
reliability : |
270
- | Scenario | Environment | Date | Dependencies |
271
- | -------- | ----------- | ---- | ------------ |
274
+ | Scenario | Environment | Date |
275
+ | -------- | ----------- | ---- |
272
276
{%- for regression in Regressions -%}
273
- {%- capture changes -%}
274
- <details>
275
- <summary>Changes</summary>
276
- <table><th>Name</th><th>Version</th><th>Diff</th>
277
- {%- assign application_changes = regression.Changes | where: "Job", "application" -%}
278
- {%- for diff in application_changes -%}
279
- <tr>
280
- <td>{{diff.Names.first}}{% if diff.Names.length > 1 %} and {{diff.Names.length | minus: 1}} others{% endif %}</td>
281
- <td>
282
- {%- case diff.ChangeType -%}
283
- {%- when 0 -%} `{{ diff.PreviousVersion }}` -> `{{ diff.CurrentVersion }}`
284
- {%- when 1 -%} `{{diff.CurrentVersion }}` (__New__ )
285
- {%- when 2 -%} `{{diff.PreviousVersion }}` (__Removed__)
286
- {%- endcase -%}
287
- </td>
288
- <td>
289
- {%- if diff.ChangeType == 0 and diff.PreviousCommitHash != diff.CurrentCommitHash -%}
290
- {%- if diff.PreviousCommitHash != empty and diff.CurrentCommitHash != empty -%}
291
- {%- if diff.RepositoryUrl == empty -%}
292
- `{{ diff.PreviousCommitHash | slice: 0, 7 }}...{{ diff.CurrentCommitHash | slice: 0, 7 }}`
293
- {%- else -%}
294
- {{ diff.RepositoryUrl }}/compare/{{ diff.PreviousCommitHash }}...{{ diff.CurrentCommitHash }}
295
- {%- endif -%}
296
- {%- else -%}
297
- `{{ diff.PreviousCommitHash | slice: 0, 7 }}...{{ diff.CurrentCommitHash | slice: 0, 7 }}`
298
- {%- endif -%}
299
- {%- else -%}
300
- n/a
301
- {%- endif -%}
302
- </td></tr>
303
- {%- endfor -%}
304
- </table></details>
305
- {%- endcapture %}
306
- | {{r.Scenario}} {% if regression.HasRecovered %}[Fixed]{% endif %} | {{r.Description}} | {{r.DateTimeUtc | format_date: 'G'}} | {{ changes | strip_newlines }} |
277
+ | {{r.Scenario}} {% if regression.HasRecovered %}[Fixed]{% endif %} | {{r.Description}} | {{r.DateTimeUtc | format_date: 'G'}} |
307
278
{%- endfor %}
308
279
309
280
[PowerBI Dashboard](https://aka.ms/aspnet/benchmarks)
0 commit comments