{% 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 %}
JobSystemStartedElapsedBuilder
{{ b.job_name }} {{ b.system }} {{ b.started_at }} {{ b.elapsed }} {% match b.builder_name %}{% when Some with (name) %}{{ name }}{% when None %}local{% endmatch %}
{% 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 %}
#JobSystemPriorityCreated
{{ b.queue_pos }} {{ b.job_name }} {{ b.system }} {{ b.priority }} {{ b.created_at }}
{% endif %} {% endblock %}