mirror of
https://github.com/linuxserver/docker-ci.git
synced 2026-02-20 02:53:44 +08:00
43 lines
744 B
Plaintext
43 lines
744 B
Plaintext
# Test Results {{ image }}:{{ meta_tag }}
|
|
|
|
## Cumulative: {{ report_status }}
|
|
|
|
| Test | Result |
|
|
| ----------------------- | --- |{% for test in report_tests %}
|
|
| {{ test[0] }} | {{ test[1] }} |{% endfor %}
|
|
|
|
<main>
|
|
{% for container in report_containers %}
|
|
<section markdown="1">
|
|
## {{ image }}:{{ container["tag"] }}
|
|
{% if screenshot == 'true' %}
|
|
[![{{ container["tag"] }}]({{ container["tag"] }}.png =600x*)]({{ container["tag"] }}.png)
|
|
{% endif %}
|
|
### Build Version: {{ container["build_version"] }}
|
|
|
|
### Logs
|
|
|
|
<details><summary>Expand</summary>
|
|
<p>
|
|
|
|
```
|
|
{{ container["logs"] }}
|
|
```
|
|
</p>
|
|
</details>
|
|
|
|
### Package info
|
|
|
|
<details><summary>Expand</summary>
|
|
<p>
|
|
|
|
```
|
|
{{ container["sysinfo"] }}
|
|
```
|
|
|
|
</p>
|
|
</details>
|
|
</section>
|
|
{% endfor %}
|
|
</main>
|