]> git.gir.st - tmk_keyboard.git/blob - tool/mbed/mbed-sdk/workspace_tools/ci_templates/library_build/build_report.html
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[tmk_keyboard.git] / tool / mbed / mbed-sdk / workspace_tools / ci_templates / library_build / build_report.html
1 <div class="toggleshow{% if report.failing|length == 0 %} toggleshow-hide{% endif %}">
2 <h3>
3 <a href="#" class="toggleshow-title">
4 <span class="toggleshow-arrow"></span>
5 {% if report.failing|length > 0 %}
6 <span class="redbold">[FAIL]</span>
7 {% else %}
8 <span class="greenbold">[PASS]</span>
9 {% endif %}
10
11 {{report.target}} - Passing: {{report.passing|length}}, Failing: {{report.failing|length}}, Skipped: {{report.skipped|length}}
12 </a>
13 </h3>
14
15 <div class="toggleshow-body">
16 <h4 class="redbold">Failing</h4>
17 {% with build = report.failing %}
18 {% include 'library_build/build_report_table.html' %}
19 {% endwith %}
20
21 <h4 class="greenbold">Passing</h4>
22 {% with build = report.passing %}
23 {% include 'library_build/build_report_table.html' %}
24 {% endwith %}
25
26 <h4>Skipped</h4>
27 {% with build = report.skipped %}
28 {% include 'library_build/build_report_table.html' %}
29 {% endwith %}
30 </div>
31 </div>
Imprint / Impressum