docker-ci/ci/results.template

41 lines
788 B
Plaintext
Executable File

# ![logo](https://www.linuxserver.io/static/logo-transparent-bg.87795b96.png)
# Test Results {{ image }}:{{ meta_tag }}
## Cumulative: {{ report_status }}
| Test | Result |
| ----------------------- | --- |{% for test in report_tests %}
| {{ test[0] }} | {{ test[1] }} |{% endfor %}
{% for container in report_containers %}
## {{ image }}:{{ container["tag"] }}
### Build Version: {{ container["build_version"] }}
{% if screenshot == 'true' %}### Screenshot
[![{{ container["tag"] }}]({{ container["tag"] }}.png =600x*)]({{ container["tag"] }}.png)
{% endif %}
### Logs
<details><summary>Expand</summary>
<p>
```
{{ container["logs"] }}
```
</p>
</details>
### Package info
<details><summary>Expand</summary>
<p>
```
{{ container["sysinfo"] }}
```
</p>
</details>
{% endfor %}