{% extends 'base.html' %} {% block title %}Build {{ build.id }}{% endblock %} {% block content %}

Build {{ build.id }} {{ (build.size or 0) | filesizeformat(true) }}

scheduled on
{{ build.scheduled_on }}
started on
{{ build.started_on }}
ended on
{{ build.ended_on }}
status
{{ build.status.value }}
{{ spec }}

{% if build.status.value in ['COMPLETED'] %}

Conda Packages {{ build.package_builds | length }}

The following build has these packages

{% for package_build in build.package_builds %} {% endfor %}
# Name Version Channel
{{ loop.index }} {{ package_build.package.name }} {{ package_build.package.version }} {{ package_build.package.channel.name }}
{% endif %} {% if build.status.value in ['COMPLETED'] %}

Conda Environment Artifacts

The following build has several methods of running the given environment

{% endif %} {% if build.status.value in ['COMPLETED', 'FAILED'] %}
Full Logs
{% endif %} {% endblock %}