{% extends "coprs/detail.html" %} {% from "coprs/detail/_builds_forms.html" import copr_build_cancel_form, copr_build_repeat_form, copr_build_delete_form %} {% from "coprs/detail/_describe_source.html" import describe_source %} {% from "coprs/detail/_describe_failure.html" import describe_failure %} {% from "_helpers.html" import chroot_to_os_logo, build_state_text, build_state %} {% block title %}Build {{ build.id }} in {{ build.copr.owner.name }}/{{ build.copr.name }}{% endblock %} {% set selected_tab = "builds" %} {%block project_breadcrumb %}
You can go to {{ build.copr.owner.name }}/{{ build.copr.name }}/build/{{build.id}} to see this build.
{% else %} {% if g.user and g.user.can_build_in(copr) and build.deletable %} {% if g.user.can_edit(copr) or build.user == g.user %} {{ copr_build_delete_form(build, page, class="pull-right button-build-action") }} {% endif %} {% endif %} {% if g.user and g.user.can_build_in(copr) and build.cancelable %} {{ copr_build_cancel_form(build, page, class="pull-right button-build-action") }} {% endif %} {% if g.user and g.user.can_build_in(copr) and build.repeatable %} {{ copr_build_repeat_form(build, page, class="pull-right button-build-action") }} {% endif %}Chroot Name | Dist Git Source | Build Time | State |
---|---|---|---|
{% if chroot.started_on %} {{ chroot.name }} {% else %} {{ chroot.name }} {% endif %} | {% if chroot.git_hash %} {% if chroot.dist_git_url %} {{ chroot.git_hash[:7] }} {% else %} {{ chroot.git_hash[:7] }} {% endif %} {% else %} - {% endif %} | {{ chroot.started_on|time_ago(chroot.ended_on) }} | {{ build_state_text(chroot.state) }} |