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 testing results Kernel CI database has recorded
@@ -11,13 +12,22 @@ for this checkout 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
+ checkout ) %}
18
+
19
+ {% set build_emoji_counts = {} %}
20
+ {% - set _ = build_macros .container_emoji_counts (build_emoji_counts ,
21
+ checkout ) %}
22
+
14
23
Checkout: {{ misc_macros.valid_badge(checkout.valid) }}
15
24
{% if checkout .builds %}
16
- Builds: {{ misc_macros.valid_badge(checkout.builds_valid) }}
25
+ Builds: {{ overview_macros.emoji_counts(build_emoji_counts,
26
+ test_emoji_counts) }}
17
27
{% endif %}
18
28
{% if checkout .tests %}
19
- Tests: {{ test_macros.waived_status_badge(checkout.tests_root.waived ,
20
- checkout.tests_root.status ) }}
29
+ Tests: {{ overview_macros.emoji_counts(test_emoji_counts ,
30
+ build_emoji_counts ) }}
21
31
{% endif %}
22
32
23
33
CHECKOUT
You can’t perform that action at this time.
0 commit comments