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

Build Queue

Running ({{ running_count }})

{% if running_builds.is_empty() %}
No builds currently running
Running builds will appear here when the queue runner picks them up.
{% else %}
{% for b in running_builds %} {% endfor %}
JobSystemStarted
{{ b.job_name }} {{ b.system }} {{ b.created_at }}
{% endif %}

Pending ({{ pending_count }})

{% if pending_builds.is_empty() %}
No builds pending
Pending builds appear after an evaluation discovers new derivations to build.
{% else %}
{% for b in pending_builds %} {% endfor %}
JobSystemCreated
{{ b.job_name }} {{ b.system }} {{ b.created_at }}
{% endif %} {% endblock %}