{% extends "base.html" %} {% block title %}Queue - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% 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 %} {{ b.elapsed }} {% endfor %}
Project Jobset Job System Started Elapsed Builder
{% match b.project_id %} {% when Some with (project_id) %} {{ b.project_name }} {% when None %} - {% endmatch %} {% match b.jobset_id %} {% when Some with (jobset_id) %} {{ b.jobset_name }} {% when None %} - {% endmatch %} {{ b.job_name }} {{ b.system }} {{ b.started_at }} {% 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 %}
{% if permissions.bump_to_front %}{% endif %} {% for b in pending_builds %} {% if permissions.bump_to_front %} {% endif %} {% endfor %}
# Project Jobset Job System Priority CreatedActions
{{ b.queue_pos }} {% match b.project_id %} {% when Some with (project_id) %} {{ b.project_name }} {% when None %} - {% endmatch %} {% match b.jobset_id %} {% when Some with (jobset_id) %} {{ b.jobset_name }} {% when None %} - {% endmatch %} {{ b.job_name }} {{ b.system }} {{ b.priority }} {{ b.created_at }}
{% endif %}
{% endblock %}