mbed-os/tools/ci_templates/library_build/build_report.html

32 lines
984 B
HTML
Raw Normal View History

2015-04-13 22:04:57 +00:00
<div class="toggleshow{% if report.failing|length == 0 %} toggleshow-hide{% endif %}">
2015-03-31 22:56:00 +00:00
<h3>
2015-04-13 22:04:57 +00:00
<a href="#" class="toggleshow-title">
<span class="toggleshow-arrow"></span>
{% if report.failing|length > 0 %}
<span class="redbold">[FAIL]</span>
{% else %}
<span class="greenbold">[PASS]</span>
2015-04-13 22:04:57 +00:00
{% endif %}
2015-03-31 22:56:00 +00:00
{{report.target}} - Passing: {{report.passing|length}}, Failing: {{report.failing|length}}, Skipped: {{report.skipped|length}}
2015-04-13 22:04:57 +00:00
</a>
</h3>
2015-03-31 22:56:00 +00:00
2015-04-13 22:04:57 +00:00
<div class="toggleshow-body">
<h4 class="redbold">Failing</h4>
{% with build = report.failing %}
{% include 'library_build/build_report_table.html' %}
2015-04-13 22:04:57 +00:00
{% endwith %}
<h4 class="greenbold">Passing</h4>
{% with build = report.passing %}
{% include 'library_build/build_report_table.html' %}
2015-04-13 22:04:57 +00:00
{% endwith %}
<h4>Skipped</h4>
{% with build = report.skipped %}
{% include 'library_build/build_report_table.html' %}
{% endwith %}
2015-04-13 22:04:57 +00:00
</div>
2015-03-31 22:56:00 +00:00
</div>