{% extends "base.html" %} {% block title %}Build {{ build.job_name }} - FC CI{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Build: {{ build.job_name }}

Status
{{ build.status_text }}
System
{{ build.system }}
Derivation
{{ build.drv_path }}
Created
{{ build.created_at }}
{% if !build.started_at.is_empty() %}
Started
{{ build.started_at }}
{% endif %} {% if !build.completed_at.is_empty() %}
Completed
{{ build.completed_at }}
{% endif %} {% if !build.duration.is_empty() %}
Duration
{{ build.duration }}
{% endif %}
Priority
{{ build.priority }}
Signed
{% if build.signed %}Yes{% else %}No{% endif %}
{% if build.is_aggregate %}
Aggregate
Yes
{% endif %}
{% if !build.output_path.is_empty() %}

Output: {{ build.output_path }}

{% endif %} {% if !build.error_message.is_empty() %}

Error: {{ build.error_message }}

{% endif %} {% if !build.log_url.is_empty() %}

View log

{% endif %}

Build Steps

{% if steps.is_empty() %}
No steps recorded.
{% else %}
{% for s in steps %} {% endfor %}
#CommandExitStartedCompleted
{{ s.step_number }} {{ s.command }} {% match s.exit_code %}{% when Some with (0) %}0{% when Some with (code) %}{{ code }}{% when None %}-{% endmatch %} {{ s.started_at.format("%H:%M:%S") }} {% match s.completed_at %}{% when Some with (t) %}{{ t.format("%H:%M:%S") }}{% when None %}-{% endmatch %}
{% endif %}

Build Products

{% if products.is_empty() %}
No products recorded.
{% else %}
{% for p in products %} {% endfor %}
NamePathSize
{{ p.name }} {{ p.path }} {% match p.file_size %}{% when Some with (sz) %}{{ sz }} bytes{% when None %}-{% endmatch %}
{% endif %} {% endblock %}