mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-14 10:25:01 +01:00
75 lines
2.3 KiB
HTML
75 lines
2.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{target}} build history</title>
|
|
<link rel="stylesheet" href="/index.css" />
|
|
<style>
|
|
.build-indicator-big {
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Target build history for {{target}}</h1>
|
|
<a href="/">Home</a>
|
|
<div style="margin-top: 20px" class="{{status}} build-indicator-big">
|
|
{{status}}
|
|
</div>
|
|
<p>
|
|
This contains the history of this target. Core is built with
|
|
<code>cargo build --release -Zbuild-std=core</code>. This checks that
|
|
codegen/linking of core works, but does not check whether std builds.
|
|
</p>
|
|
<p>
|
|
std is being built with <code>cargo miri setup</code>. If a target does
|
|
not support std, the std column represents core/alloc. This checks that
|
|
std builds (on targets that have it) but does not check whether
|
|
codegen/linking works.
|
|
</p>
|
|
{% if showing_failures %}
|
|
<p>
|
|
<a href="/target?target={{target}}">show all</a>
|
|
</p>
|
|
{% else %}
|
|
<p>
|
|
<a href="/target?target={{target}}&failures=true">filter failures</a>
|
|
</p>
|
|
{% endif %}
|
|
<table>
|
|
<tr>
|
|
<th>nightly</th>
|
|
<th>core<br />codegen</th>
|
|
<th>std<br />check</th>
|
|
</tr>
|
|
{% for build in builds %}
|
|
<tr>
|
|
<td><a href="/nightly?nightly={{build.0}}">{{ build.0 }}</a></td>
|
|
{% match build.1 %} {% when Some with (build) %}
|
|
<td class="build-cell">
|
|
<a class="build-info-a" href="{{ build.link() }}">
|
|
{{ build.status.to_emoji() }}
|
|
</a>
|
|
</td>
|
|
{% when None %}
|
|
<td class="missing"></td>
|
|
{% endmatch %} {% match build.2 %} {% when Some with (build) %}
|
|
<td class="build-cell">
|
|
<a class="build-info-a" href="{{ build.link() }}">
|
|
<span> {{ build.status.to_emoji() }} </span>
|
|
</a>
|
|
</td>
|
|
{% when None %}
|
|
<td class="missing"></td>
|
|
{% endmatch %}
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<footer class="footer">
|
|
<a href="https://github.com/Noratrieb/does-it-build">
|
|
does-it-build {{version}}
|
|
</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|