{% extends "layout.html" %} {% block sidebar %}{% include "cupboard/sidebar.html" %}{% endblock %} {% from "codeblock.html" import include_console_log with context %} {% from "run_util.html" import local_command, merge_command, reschedule_button, schedule_control_button, publish_buttons, install_commands, display_result_code, result_code_explanation, display_branch_url, display_upstream_branch_url, display_vcs_diffs, display_publish_result, file_bug_button, reprocess_logs_button with context %} {% from "debian_util.html" import display_lintian_result with context %} {% block page_title %}Run details - {{ package }}{% endblock %} {% block body %}

Run of {{ suite }} for {{ package }}

{{ local_command(command, None, package, vcs_type, vcs_url) }} {% if branch_url %} {{ reschedule_button(suite, package, "Reschedule") }} {{ reschedule_button(suite, package, "Reschedule (from scratch)", data={'refresh': '1'}, id='reschedule-refresh') }} {% if run.result_branches %} {{ publish_buttons(suite, package) }} {% endif %} {% endif %} {{ reprocess_logs_button(run_id) }} {{ file_bug_button(run_id, result_code, verbatim_id="#log") }} {% if run.result_branches %} {% if suite != 'unchanged' %} {{ merge_command(package, suite, run.result_branches, vcs) }} {% endif %} {% else %} {% if result_code not in ('nothing-to-do', 'nothing-new-to-do', 'missing-control-file', 'unparseable-changelog', 'inconsistent-source-format', 'upstream-branch-unknown', 'requires-nested-tree-support', 'upstream-unsupported-vcs-svn', 'control-files-in-root', 'success') %} {% if primary_log == 'build' %} {% with f = get_log(build_log_name) %} {{ include_console_log(f, build_log_include_lines or (max(1, build_log_line_count), None), build_log_highlight_lines, id="log") }} {% endwith %} {% elif primary_log == 'dist' %} {% with f = get_log(dist_log_name) %} {{ include_console_log(f, dist_log_include_lines or (max(1, dist_log_line_count), None), dist_log_highlight_lines, id="log") }} {% endwith %} {% elif primary_log == 'worker' %} {% with f = get_log(worker_log_name) %} {{ include_console_log(f, id="log") }} {% endwith %} {% else %} {% endif %} {% endif %} {% endif %} {% if result %}

Summary

{% include [suite + "/summary.html", "generic/summary.html"] %} {% endif %} {% if revision and result_code in ('success', 'nothing-to-do') and suite != 'unchanged' %} {{ display_vcs_diffs(show_diff, run.result_branches, run.result_tags) }} {% endif %} {% if debdiff %}

Debdiff

{% if debdiff.split('\n')|length < 200 %} {{ debdiff|safe }} {% else %}

Debdiff is too long (more than 200 lines). Download the raw debdiff.

{% endif %} {% endif %} {% if publish_history %}

Publish History

{% endif %} {% if binary_packages %}

Resulting package

{{ install_commands(binary_packages, build_distribution) }} {% endif %} {% if lintian_result %}

Lintian Result

{{ display_lintian_result(lintian_result) }} {% endif %} {% if reviews %}

Reviews

{% for review in reviews %} {% endfor %}
ReviewerVerdictComment
{{ review['reviewer'] }}{{ review['review_status'] }}{{ review['review_comment'] }}
{% endif %}

{% if worker_log_name %}Full worker log{% endif %}{% if build_log_name %} Full build log{% if earlier_build_log_names %} ({% for i, name in earlier_build_log_names %}{{ i }}{% if not loop.last %}, {% endif %}{% endfor %}){% endif %} {% endif %}{% if dist_log_name %} Full dist log{% endif %}

{% endblock %}