{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}Koschei - {{ build.package.name }} - build {{ build.task_id }}{% endblock %} {% block subheader %}

Build details

{% endblock %} {% block content %}

Build information

State
{{ build.state_icon }} {{ build.state_string }}
Epoch
{{ build.epoch }}
Version
{{ build.version }}
Release
{{ build.release }}
Started
{{ build.started|date }}
Finished
{{ build.finished|date }}
Koji repo
{{ build.repo_id }}

Koji tasks

{{ cancel_form.csrf_token }} {{ macros.task_tree(build, show_cancel_btn=(build.state == build.RUNNING and g.user.admin)) }}
{% if build.build_arch_tasks|length > 0 %}

Build logs

{% for subtask in build.build_arch_tasks %}
{{ subtask.arch }}
{% endfor %}
{% endif %}

Dependency changes from previous build

{% if build.deps_resolved %} {{ macros.depchange_table(build.dependency_changes) }} {% else %} {% if build.deps_resolved is sameas False %}
Dependencies for this build could not be processed.
{% else %}
Dependencies for this build were not processed yet.
{% endif %} {% endif %}
{% endblock %}