File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 2
2
{% import "test.j2" as test_macros %}
3
3
{% import "build.j2" as build_macros %}
4
4
{% import "misc.j2" as misc_macros %}
5
+ {% import "overview.j2" as overview_macros %}
5
6
{# Maximum length of a list of things (builds/tests/etc.) #}
6
7
{% set max_list_len = 5 %}
7
8
Below is the summary of results Kernel CI database has recorded
@@ -11,15 +12,24 @@ for this revision so far. See complete and up-to-date report at:
11
12
12
13
OVERVIEW
13
14
15
+ {% set test_emoji_counts = {} %}
16
+ {% set _ = test_macros .container_emoji_counts (test_emoji_counts ,
17
+ revision ) -%}
18
+
19
+ {% set build_emoji_counts = {} %}
20
+ {% set _ = build_macros .container_emoji_counts (build_emoji_counts ,
21
+ revision ) -%}
22
+
14
23
{% if revision .patchset_files %}
15
24
Patches: {{ misc_macros.valid_badge(revision.checkouts_valid) }}
16
25
{% endif %}
17
26
{% if revision .builds %}
18
- Builds: {{ misc_macros.valid_badge(revision.builds_valid) }}
27
+ Builds: {{ overview_macros.emoji_counts(build_emoji_counts,
28
+ test_emoji_counts) }}
19
29
{% endif %}
20
30
{% if revision .tests %}
21
- Tests: {{ test_macros.waived_status_badge(revision.tests_root.waived ,
22
- revision.tests_root.status ) }}
31
+ Tests: {{ overview_macros.emoji_counts(test_emoji_counts ,
32
+ build_emoji_counts ) }}
23
33
{% endif %}
24
34
25
35
REVISION
You can’t perform that action at this time.
0 commit comments