{% 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 %}
| Job | System | Started |
{% for b in running_builds %}
| {{ b.job_name }} |
{{ b.system }} |
{{ b.created_at }} |
{% endfor %}
{% endif %}
Pending ({{ pending_count }})
{% if pending_builds.is_empty() %}
No builds pending
Pending builds appear after an evaluation discovers new derivations to build.
{% else %}
| Job | System | Created |
{% for b in pending_builds %}
| {{ b.job_name }} |
{{ b.system }} |
{{ b.created_at }} |
{% endfor %}
{% endif %}
{% endblock %}