mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 10:02:22 +01:00
This patch updates the database schema to resolve a number of issues discovered while implementing the UI interface. We do not expect that all the data will come in valid at this point. [YOCTO #5453] [YOCTO #5833] [YOCTO #5836] [YOCTO #5811] [YOCTO #5812] [YOCTO #5820] (Bitbake rev: f8ad96d10a095e21fd2ce424c45e17f54642fb54) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.8 KiB
HTML
44 lines
1.8 KiB
HTML
{% extends "simple_basetable.html" %}
|
|
|
|
{% block pagename %}
|
|
<h1>Toaster - Builds</h1>
|
|
{% endblock %}
|
|
|
|
{% block pagetable %}
|
|
|
|
{% load projecttags %}
|
|
<tr>
|
|
<th>Outcome</th>
|
|
<th>Started On</th>
|
|
<th>Completed On</th>
|
|
<th>Target</th>
|
|
<th>Machine</th>
|
|
<th>Time</th>
|
|
<th>Errors</th>
|
|
<th>Warnings</th>
|
|
<th>Output</th>
|
|
<th>Log</th>
|
|
<th>Bitbake Version</th>
|
|
<th>Build Name</th>
|
|
</tr>
|
|
{% for build in objects %}
|
|
<tr class="data">
|
|
<td><a href="{% url "simple-configuration" build.id %}">{{build.get_outcome_display}}</a></td>
|
|
<td>{{build.started_on}}</td>
|
|
<td>{{build.completed_on}}</td>
|
|
<td>{% for t in build.target_set.all %}{%if t.is_image %}<a href="{% url "simple-tpackage" build.id t.id %}">{% endif %}{{t.target}}{% if t.is_image %}</a>{% endif %}<br/>{% endfor %}</td>
|
|
<td>{{build.machine}}</td>
|
|
<td>{% time_difference build.started_on build.completed_on %}</td>
|
|
<td>{{build.errors_no}}:{% if build.errors_no %}{% for error in logs %}{% if error.build == build %}{% if error.level == 2 %}<p>{{error.message}}</p>{% endif %}{% endif %}{% endfor %}{% else %}None{% endif %}</td>
|
|
<td>{{build.warnings_no}}:{% if build.warnings_no %}{% for warning in logs %}{% if warning.build == build %}{% if warning.level == 1 %}<p>{{warning.message}}</p>{% endif %}{% endif %}{% endfor %}{% else %}None{% endif %}</td>
|
|
<td>TBD: determine image file list</td>
|
|
<td>{{build.cooker_log_path}}</td>
|
|
<td>{{build.bitbake_version}}</td>
|
|
<td>{{build.build_name}}</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
|