{% extends "coprs/detail.html" %} {% from "_helpers.html" import build_href, package_href %} {% from "coprs/detail/_builds_forms.html" import copr_build_form_rebuild with context %} {% from "coprs/detail/_describe_source.html" import describe_source %} {% set add_build_tab = "rebuild" %} {%block project_breadcrumb %}
  • Builds
  • {{build.id}}
  • Resubmit
  • {%endblock%} {% block detail_body %}

    Resubmit build {{ build.id }}

    Resubmitting a build will rebuild the same sources again.

    {% if allow_user_ssh %}

    SSH access to the builder

    You will obtain a SSH access to the builder to easily debug your package within the Copr infrastructure.
    Check your backend.log for instructions on how to connect to the builder.
    After connecting, run copr-builder help for instructions on how to work with the builder.
    There is a limit for max 2 builders wih SSH access per user. The rest of builds will remain in the pending state until a slot is freed.

    {% endif %}

    Original Build Details

    Package:
    {% if build.package %} {{ build.package.name }} {% else %} - {% endif %}
    Version:
    {% if build.pkg_version %} {{ build.pkg_version}} {% else %} - {% endif %}
    {{ describe_source(build.source_type_text, build.source_json_dict) }}
    {{ copr_build_form_rebuild(form, 'coprs_ns.copr_new_build_rebuild', copr, build, allow_user_ssh) }}
    {% endblock %}