mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-14 18:35:01 +01:00
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Build {{nightly}} {{target}}</title>
|
|
<link rel="stylesheet" href="/index.css" />
|
|
<script type="module" defer src="index.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
Build results for
|
|
<a href="/nightly?nightly={{nightly}}">nightly-{{nightly}}</a>, target
|
|
<a href="/target?target={{target}}">{{target}}</a> ({{mode}})
|
|
</h1>
|
|
<a href="/">Home</a>
|
|
<div class="{{status}} build-indicator-big">{{status}}</div>
|
|
{% if let Some(rustflags) = rustflags %}
|
|
<p>
|
|
Using rustflags: <b><code>{{rustflags}}</code></b>
|
|
</p>
|
|
{% endif %} {% if let Some(build_date) = build_date %}
|
|
<p>Build date: <span class="date">{{build_date}}</span></p>
|
|
{% endif %} {% if let Some(build_duration_s) = build_duration_s %}
|
|
<p>Build duration: <span class="number">{{build_duration_s}}</span>s</p>
|
|
{% endif %} {% if let Some(does_it_build_version) = does_it_build_version %}
|
|
<p>Builder does-it-build commit: <span>{{does_it_build_version}}</span></p>
|
|
{% endif %}
|
|
<pre>
|
|
{{stderr}}
|
|
</pre>
|
|
<p>
|
|
<a href="/target?target={{target}}"
|
|
>Build history for target {{target}}</a
|
|
>
|
|
</p>
|
|
<p>
|
|
<a href="/nightly?nightly={{nightly}}"
|
|
>Build state for nightly {{nightly}}</a
|
|
>
|
|
</p>
|
|
<footer class="footer">
|
|
<a href="https://github.com/Noratrieb/does-it-build">
|
|
does-it-build {{version}}
|
|
</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|