{% extends "base.html" %} {% block content %}
{% if detail == None %}

Build id not found

{% else %}
{{detail.ERROR_DETAILS}}

Error details

Submitted on:
{{ detail.BUILD.DATE|date:"d/m/y H:i"}}
Task:
{{ detail.TASK }}
Recipe:
{{detail.RECIPE }}
Recipe version:
{{ detail.RECIPE_VERSION }}
Machine:
{{ detail.BUILD.MACHINE }}
Distro:
{{detail.BUILD.DISTRO}}
Build system:
{{ detail.BUILD.BUILD_SYS }}
Target system:
{{ detail.BUILD.TARGET_SYS }}
Host distro:
{{ detail.BUILD.NATIVELSBSTRING }}
Branch:
{{ detail.BUILD.BRANCH }}
Commit:
{{ detail.BUILD.COMMIT }}
{% if "yocto-autobuilder" in detail.BUILD.NAME and "master" in detail.BUILD.BRANCH %}
View commit
{% endif %}
Build:
#{{detail.BUILD.id}}
Submitter:
{% if "@" in detail.BUILD.EMAIL %}
{{detail.BUILD.EMAIL}}
{% else %}
{{ detail.BUILD.NAME }}
{% endif %} {% if detail.BUILD.LINK_BACK %}
Link back:
{{detail.BUILD.LINK_BACK}}
{% endif %}
Similar errors:
{% with detail.get_similar_fails_count as similar_count %} {% if similar_count %} {{similar_count}} {% else %} {{similar_count|default_if_none:0}} {% endif %} {% endwith %}
Open a bug
{% endif %} {% endblock %}