{% 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 | Elapsed | Builder |
{% for b in running_builds %}
| {{ b.job_name }} |
{{ b.system }} |
{{ b.started_at }} |
{{ b.elapsed }} |
{% match b.builder_name %}{% when Some with (name) %}{{ name }}{% when None %}local{% endmatch %} |
{% 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 | Priority | Created |
{% for b in pending_builds %}
| {{ b.queue_pos }} |
{{ b.job_name }} |
{{ b.system }} |
{{ b.priority }} |
{{ b.created_at }} |
{% endfor %}
{% endif %}
{% endblock %}