Build custom container images / build (map[base_image:php:8-fpm-alpine build_args:PHP_VERSION=8
context:php8-pgsql fingerprint_command:{ apk info -v | LC_ALL=C sort; find /usr/local/lib/php/extensions /usr/local/etc/php/conf.d -type f -exec sha256sum {} + | LC_ALL=C sort; }
name:ph… (push) Successful in 39s
Build custom container images / build (map[base_image:postgres:18 build_args:PG_VERSION=18
POSTGIS_VERSION=3
VCHORD_VERSION=0.5.3
context:postgres fingerprint_command:{ dpkg-query -W -f='${binary:Package}=${Version}\n' | LC_ALL=C sort; find /usr/lib/postgresql -type f -exec sha256su… (push) Successful in 53s
Build custom container images / build (map[base_image:python:3 build_args:PYTHON_VERSION=3
context:python-tools fingerprint_command:{ dpkg-query -W -f='${binary:Package}=${Version}\n' | LC_ALL=C sort; pip freeze | LC_ALL=C sort; }
name:python-tools oci_labels:org.opencontainers.ima… (push) Successful in 1m17s
39 lines
1.6 KiB
HTML
39 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Run {{ run.id }} · Server Maintenance{% endblock %}
|
|
{% block content %}
|
|
<p><a href="{{ url_for('index') }}">← Tasks</a></p>
|
|
<h1>{{ run.target_kind|title }} run #{{ run.id }}</h1>
|
|
<dl>
|
|
<dt>Target</dt><dd>{{ run.target_path }}</dd>
|
|
<dt>Status</dt><dd id="run-status" data-state-url="{{ url_for('run_state', run_id=run.id) }}">{{ run.status }}</dd>
|
|
<dt>Started</dt><dd>{{ run.started_at|timestamp }}</dd>
|
|
<dt>Finished</dt><dd>{{ run.finished_at|timestamp }}</dd>
|
|
<dt>Exit code</dt><dd>{{ run.exit_code if run.exit_code is not none else "—" }}</dd>
|
|
{% if run.message %}<dt>Message</dt><dd>{{ run.message }}</dd>{% endif %}
|
|
</dl>
|
|
{% if run.status in ("queued", "running") %}
|
|
<form method="post" action="{{ url_for('cancel_run', run_id=run.id) }}">
|
|
<button type="submit">Cancel</button>
|
|
</form>
|
|
{% endif %}
|
|
{% if execution_task %}
|
|
<form method="post" action="{{ url_for('execute_dry_run', run_id=run.id) }}">
|
|
<button type="submit">{{ execution_task.execution.field.options[1].label }}</button>
|
|
</form>
|
|
{% endif %}
|
|
{% if children %}
|
|
<h2>Group tasks</h2>
|
|
<ul>
|
|
{% for child in children %}
|
|
<li><a href="{{ url_for('run_detail', run_id=child.id) }}">{{ child.target_path }}</a> · {{ child.status }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
<section id="run-artifacts" data-artifacts-url="{{ url_for('run_artifacts', run_id=run.id) }}" hidden>
|
|
<h2>Artifacts</h2>
|
|
<ul></ul>
|
|
</section>
|
|
<h2>Output</h2>
|
|
<pre id="run-output" data-output-url="{{ url_for('run_output', run_id=run.id) }}">{{ output }}</pre>
|
|
{% endblock %}
|