sci-agent 发布平台 · 独立静态报告

运行报告

本报告可直接从文件系统打开,不依赖平台 UI、后端服务或额外静态资源。

执行结果:{{ run.status_label }}

执行结果

运行 ID
{{ run.run_id }}
项目
{{ run.project or "未记录" }}
流水线
{{ run.pipeline_name or "未记录" }}
目标环境
{{ run.target or "未记录" }}

阶段时间线

{% for stage in stages %}
{{ stage.name }}
{{ stage.summary }}
状态:{{ stage.status }}
{% endfor %}

关键产物

{% for artifact in artifacts %}
{{ artifact.kind }}
{{ artifact.name }}
{{ artifact.path }}
{% else %}
未记录关键产物。
{% endfor %}

摘要说明

{{ summary_text }}

日志摘要

{% for log in log_summary %}
{{ log.name }}
{{ log.content }}
{% else %}
未记录可展示的日志摘要。
{% endfor %}
{% if failure_info %}

失败信息

失败步骤
{{ failure_info.step }}
exit_code
{{ failure_info.exit_code or "未记录" }}
{{ failure_info.message }}
{% endif %}

详细事件

{% for event in timeline %} {% else %} {% endfor %}
时间类型摘要
{{ event.time }}{{ event.type }}{{ event.summary }}
无事件

本地构建日志

{% for step in local_steps %}
{{ step.name }} · exit_code={{ step.exit_code or "未记录" }}
cwd: {{ step.cwd }}
command: {{ step.command }}
{{ step.stdout }}
{% if step.stderr %}
{{ step.stderr }}
{% endif %}
{% else %}
无本地构建日志。
{% endfor %}

服务发布日志

{% for step in server_steps %}
{{ step.name }} · {{ step.status or "未知" }}
exit_code: {{ step.exit_code or "未记录" }}
{{ step.stdout }}
{% if step.stderr %}
{{ step.stderr }}
{% endif %}
{% else %}
无服务端执行日志。
{% endfor %}

清理结果

{% for cleanup in cleanup_events %}
清理产物 · {{ cleanup.status }}
{{ cleanup.result }}
{% else %}
无清理记录。
{% endfor %}