2008-10-28 10:19:31 +00:00
|
|
|
[% WRAPPER layout.tt title="Hydra Overview" %]
|
2008-11-17 23:59:20 +00:00
|
|
|
[% PROCESS common.tt %]
|
2008-11-18 14:48:40 +00:00
|
|
|
[% USE HTML %]
|
2008-10-28 10:19:31 +00:00
|
|
|
[% USE date %]
|
2008-11-12 14:29:32 +00:00
|
|
|
[% USE mibs=format("%.2f") %]
|
2008-10-28 10:19:31 +00:00
|
|
|
|
2008-11-11 12:54:37 +00:00
|
|
|
<h1>
|
|
|
|
Job <tt>[% build.project.name %]:[% build.attrname %]</tt> build [% id %]
|
|
|
|
[% IF !build.finished %]
|
2008-11-11 14:45:33 +00:00
|
|
|
[% IF build.schedulingInfo.busy %]
|
|
|
|
(currently building)
|
|
|
|
[% ELSE %]
|
|
|
|
(scheduled)
|
|
|
|
[% END %]
|
2008-11-11 12:54:37 +00:00
|
|
|
[% END %]
|
|
|
|
</h1>
|
2008-10-28 10:19:31 +00:00
|
|
|
|
2008-11-05 06:23:41 +00:00
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
<h2>Information</h2>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Build ID:</th>
|
|
|
|
<td>[% build.id %]</td>
|
|
|
|
</tr>
|
2008-11-11 12:54:37 +00:00
|
|
|
<tr>
|
|
|
|
<th>Time added:</th>
|
|
|
|
<td>[% date.format(build.timestamp, '%Y-%m-%d %H:%M:%S') %]</td>
|
|
|
|
</tr>
|
2008-11-11 14:45:33 +00:00
|
|
|
<tr>
|
|
|
|
<th>Status:</th>
|
|
|
|
<td>
|
|
|
|
[% IF build.finished %]
|
|
|
|
[% IF build.resultInfo.buildstatus == 0 %]
|
|
|
|
<img src="/static/images/success.gif" />
|
|
|
|
<strong>Success</strong>
|
|
|
|
[% ELSIF build.resultInfo.buildstatus == 1 %]
|
|
|
|
<img src="/static/images/failure.gif" />
|
2008-11-25 00:38:16 +00:00
|
|
|
<span class="error">Build returned a non-zero exit code</span>
|
|
|
|
[% ELSIF build.resultInfo.buildstatus == 2 %]
|
|
|
|
<img src="/static/images/failure.gif" />
|
|
|
|
<span class="error">A dependency of the build failed</span>
|
2008-11-11 14:45:33 +00:00
|
|
|
[% ELSE %]
|
|
|
|
<img src="/static/images/failure.gif" />
|
2008-11-25 00:38:16 +00:00
|
|
|
<span class="error">Build failed</span>
|
|
|
|
(see <a href="#nix-error">below</a>)
|
2008-11-11 14:45:33 +00:00
|
|
|
[% END %]
|
|
|
|
[% ELSIF build.schedulingInfo.busy %]
|
|
|
|
<strong>Build in progress</strong>
|
|
|
|
[% ELSE %]
|
|
|
|
<strong>Scheduled to be built</strong>
|
|
|
|
[% END %]
|
|
|
|
</td>
|
|
|
|
</tr>
|
2008-11-05 03:25:48 +00:00
|
|
|
<tr>
|
|
|
|
<th>Project:</th>
|
2008-11-10 10:18:50 +00:00
|
|
|
<td><a href="[% c.uri_for('/project' build.project.name) %]"><tt>[% build.project.name %]</tt></a></td>
|
2008-11-05 03:25:48 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Jobset:</th>
|
2008-11-10 10:18:50 +00:00
|
|
|
<td><tt>[% build.jobset.name %]</tt></td>
|
2008-11-05 03:25:48 +00:00
|
|
|
</tr>
|
2008-10-28 10:19:31 +00:00
|
|
|
<tr>
|
|
|
|
<th>Job name:</th>
|
2008-11-12 16:42:07 +00:00
|
|
|
<td><a href="[% c.uri_for('/job' build.project.name build.attrname) %]"><tt>[% build.attrname %]</tt></a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Nix name:</th>
|
|
|
|
<td><tt>[% build.nixname %]</tt></td>
|
2008-10-28 10:19:31 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Description:</th>
|
|
|
|
<td>[% build.description %]</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2008-11-11 12:54:37 +00:00
|
|
|
<th>System:</th>
|
|
|
|
<td><tt>[% build.system %]</tt></td>
|
2008-10-28 10:19:31 +00:00
|
|
|
</tr>
|
2008-11-11 12:54:37 +00:00
|
|
|
<tr>
|
|
|
|
<th>Derivation store path:</th>
|
|
|
|
<td><tt>[% build.drvpath %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Output store path:</th>
|
|
|
|
<td><tt>[% build.outpath %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
[% IF build.finished %]
|
2008-11-06 14:32:30 +00:00
|
|
|
<tr>
|
|
|
|
<th>Build started:</th>
|
2008-11-11 12:54:37 +00:00
|
|
|
<td>[% IF build.resultInfo.starttime %][% date.format(build.resultInfo.starttime, '%Y-%m-%d %H:%M:%S') %][% ELSE %]<em>(cached build)</em>[% END %]</td>
|
2008-11-06 14:32:30 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Build finished:</th>
|
2008-11-11 12:54:37 +00:00
|
|
|
<td>[% IF build.resultInfo.stoptime %][% date.format(build.resultInfo.stoptime, '%Y-%m-%d %H:%M:%S') %][% ELSE %]<em>(cached build)</em>[% END %]</td>
|
2008-11-06 14:32:30 +00:00
|
|
|
</tr>
|
2008-10-28 17:08:29 +00:00
|
|
|
<tr>
|
|
|
|
<th>Duration (seconds):</th>
|
|
|
|
<td>
|
2008-11-11 12:54:37 +00:00
|
|
|
[% IF build.resultInfo.iscachedbuild %]
|
2008-10-28 17:08:29 +00:00
|
|
|
<em>(cached build)</em>
|
|
|
|
[% ELSE %]
|
2008-11-11 12:54:37 +00:00
|
|
|
[% build.resultInfo.stoptime - build.resultInfo.starttime %]
|
2008-10-28 17:08:29 +00:00
|
|
|
[% END %]
|
|
|
|
</td>
|
|
|
|
</tr>
|
2008-11-25 00:38:16 +00:00
|
|
|
[% IF build.resultInfo.logfile %]
|
|
|
|
<tr>
|
|
|
|
<th>Logfile:</th>
|
|
|
|
<td>
|
|
|
|
<a href="[% c.uri_for('/log' build.id) %]"><strong>Available</strong></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
2008-11-11 12:54:37 +00:00
|
|
|
[% ELSE %]
|
|
|
|
<tr>
|
|
|
|
<th>Priority:</th>
|
|
|
|
<td>[% build.schedulingInfo.priority %]</td>
|
|
|
|
</tr>
|
2008-11-11 14:45:33 +00:00
|
|
|
[% IF build.schedulingInfo.busy %]
|
|
|
|
<tr>
|
|
|
|
<th>Logfile:</th>
|
2008-11-12 16:42:07 +00:00
|
|
|
<td><tt>[% build.schedulingInfo.logfile %]</tt></td>
|
2008-11-11 14:45:33 +00:00
|
|
|
</tr>
|
|
|
|
[% END %]
|
2008-11-11 12:54:37 +00:00
|
|
|
[% END %]
|
2008-10-28 10:19:31 +00:00
|
|
|
</table>
|
|
|
|
|
|
|
|
|
2008-11-05 06:23:41 +00:00
|
|
|
<h2>Build inputs</h2>
|
|
|
|
|
|
|
|
<table class="tablesorter">
|
|
|
|
<thead>
|
2008-11-05 23:08:16 +00:00
|
|
|
<tr><th>Name</th><th>Type</th><th>What</th><th>Store path</th></tr>
|
2008-11-05 06:23:41 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2008-11-09 00:48:36 +00:00
|
|
|
[% FOREACH input IN build.inputs -%]
|
2008-11-05 06:23:41 +00:00
|
|
|
<tr>
|
2008-11-05 23:08:16 +00:00
|
|
|
<td><tt>[% input.name %]</tt></td>
|
2008-11-17 23:59:20 +00:00
|
|
|
<td><tt>[% type = input.type; inputTypes.$type %]</tt></td>
|
2008-11-05 23:08:16 +00:00
|
|
|
<td>
|
|
|
|
[% IF input.type == "build" %]
|
2008-11-10 10:18:50 +00:00
|
|
|
<a href="[% c.uri_for('/build' input.dependency.id) %]">Job <tt>[% input.dependency.project.name %]:[% input.dependency.attrname %]</tt> build [% input.dependency.id %]</a>
|
2008-11-06 18:26:29 +00:00
|
|
|
[% ELSIF input.type == "string" %]
|
2008-11-06 18:28:34 +00:00
|
|
|
<tt>"[% input.value %]"</tt>
|
2008-11-05 23:08:16 +00:00
|
|
|
[% ELSE %]
|
|
|
|
<tt>[% input.uri %]</tt>
|
|
|
|
[% END %]
|
|
|
|
</td>
|
|
|
|
<td><tt>[% input.path %]</tt></td>
|
2008-11-05 06:23:41 +00:00
|
|
|
</tr>
|
|
|
|
[% END -%]
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
2008-11-11 17:49:50 +00:00
|
|
|
[% IF build.buildsteps %]
|
|
|
|
|
2008-11-25 00:38:16 +00:00
|
|
|
<h2 id="buildsteps">Build steps</h2>
|
2008-11-11 17:49:50 +00:00
|
|
|
|
|
|
|
<table class="tablesorter">
|
|
|
|
<thead>
|
2008-11-12 11:09:21 +00:00
|
|
|
<tr><th>Nr</th><th>What</th><th>Duration</th><th>Status</th></tr>
|
2008-11-11 17:49:50 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
[% FOREACH step IN build.buildsteps -%]
|
|
|
|
<tr>
|
|
|
|
<td>[% step.stepnr %]</td>
|
|
|
|
<td>
|
2008-11-12 13:00:56 +00:00
|
|
|
[% IF step.type == 0 %]
|
|
|
|
Build of <tt>[% step.outpath %]</tt>
|
|
|
|
[% ELSE %]
|
|
|
|
Substitution of <tt>[% step.outpath %]</tt>
|
|
|
|
[% END %]
|
2008-11-11 17:49:50 +00:00
|
|
|
</td>
|
2008-11-12 11:09:21 +00:00
|
|
|
<td>
|
|
|
|
[% IF step.busy == 0 %]
|
|
|
|
[% step.stoptime - step.starttime %]s
|
|
|
|
[% ELSE %]
|
2008-11-25 00:38:16 +00:00
|
|
|
[% IF build.finished %]
|
|
|
|
[% build.resultInfo.stoptime - step.starttime %]s
|
|
|
|
[% ELSE %]
|
|
|
|
[% curTime - step.starttime %]s
|
|
|
|
[% END %]
|
2008-11-12 11:09:21 +00:00
|
|
|
[% END %]
|
|
|
|
</td>
|
2008-11-11 17:49:50 +00:00
|
|
|
<td>
|
|
|
|
[% IF step.busy == 1 %]
|
2008-11-25 00:38:16 +00:00
|
|
|
[% IF build.finished %]
|
|
|
|
<span class="error">Aborted</span>
|
|
|
|
[% ELSE %]
|
|
|
|
<strong>Building</strong>
|
|
|
|
[% END %]
|
2008-11-11 17:49:50 +00:00
|
|
|
[% ELSIF step.status == 0 %]
|
|
|
|
Succeeded
|
|
|
|
[% ELSE %]
|
2008-11-25 00:38:16 +00:00
|
|
|
<span class="error">Failed: [% HTML.escape(step.errormsg) %]</span>
|
2008-11-11 17:49:50 +00:00
|
|
|
[% END %]
|
2008-11-12 13:00:56 +00:00
|
|
|
[% IF step.logfile %]
|
|
|
|
(<a href="[% c.uri_for('/nixlog' build.id step.stepnr) %]">log</a>)
|
|
|
|
[% END %]
|
2008-11-11 17:49:50 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
|
2008-11-11 12:54:37 +00:00
|
|
|
[% IF build.finished %]
|
|
|
|
|
2008-11-11 14:45:33 +00:00
|
|
|
|
2008-11-25 00:38:16 +00:00
|
|
|
[% IF build.resultInfo.errormsg %]
|
|
|
|
|
|
|
|
<h2 id="nix-error">Nix error output</h2>
|
|
|
|
|
|
|
|
<pre class="buildlog">
|
|
|
|
[% HTML.escape(build.resultInfo.errormsg) -%]
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
|
2008-11-11 14:45:33 +00:00
|
|
|
[% IF build.buildproducts %]
|
|
|
|
|
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
<h2>Build products</h2>
|
|
|
|
|
2008-11-07 17:10:34 +00:00
|
|
|
<ul class="productList">
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
[% FOREACH product IN build.buildproducts -%]
|
2008-11-17 13:36:58 +00:00
|
|
|
<li class="product">
|
2008-10-28 10:19:31 +00:00
|
|
|
[% SWITCH product.type %]
|
2008-11-12 15:36:50 +00:00
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
[% CASE "nix-build" %]
|
2008-11-17 23:59:20 +00:00
|
|
|
<a href="[% c.uri_for('/closure' build.id product.productnr) %]">
|
|
|
|
<img src="/static/images/nix-build.png" alt="Source" />
|
|
|
|
Nix build of path <tt>[% product.path %]</tt>
|
|
|
|
</a>
|
2008-11-18 14:48:40 +00:00
|
|
|
[<a class="productDetailsToggle" href="javascript:">help</a>]
|
|
|
|
<div class="help productDetails">
|
|
|
|
<p>If you have Nix installed on your machine, this build and all
|
|
|
|
its dependencies can be unpacked into your local Nix store by
|
|
|
|
doing:</p>
|
|
|
|
|
|
|
|
<pre>$ gunzip < [% HTML.escape(build.nixname) %].closure.gz | nix-store --import</pre>
|
|
|
|
|
|
|
|
or to download and unpack in one command:
|
|
|
|
|
|
|
|
<pre>$ curl [% c.uri_for('/closure' build.id product.productnr) %] | gunzip | nix-store --import</pre>
|
|
|
|
|
|
|
|
<p>The package can then be found in the path <tt>[%
|
|
|
|
product.path %]</tt>. If you get the error message “imported
|
|
|
|
archive lacks a signature”, you should make sure that you have
|
|
|
|
sufficient access rights to the Nix store, e.g., run the
|
|
|
|
command as <tt>root</tt>.</p>
|
|
|
|
</div>
|
2008-11-12 15:36:50 +00:00
|
|
|
|
2008-11-07 17:10:34 +00:00
|
|
|
[% CASE "file" %]
|
2008-11-12 14:41:51 +00:00
|
|
|
<a href="[% c.uri_for('/download' build.id product.productnr product.name) %]">
|
|
|
|
[% SWITCH product.subtype %]
|
|
|
|
[% CASE "source-dist" %]
|
|
|
|
<img src="/static/images/source-dist.png" alt="Source" /> Source distribution <tt>[% product.name %]</tt>
|
|
|
|
[% CASE "rpm" %]
|
2008-11-17 23:59:20 +00:00
|
|
|
<img src="/static/images/rpm.png" alt="RPM" /> RPM package <tt>[% product.name %]</tt>
|
2008-11-25 02:27:03 +00:00
|
|
|
[% CASE "deb" %]
|
|
|
|
<img src="/static/images/debian.png" alt="RPM" /> Debian package <tt>[% product.name %]</tt>
|
2008-11-12 14:41:51 +00:00
|
|
|
[% CASE DEFAULT %]
|
|
|
|
File <tt>[% product.name %]</tt> of type <tt>[% product.subtype %]</tt>
|
|
|
|
[% END %]
|
|
|
|
</a>
|
2008-11-17 13:36:58 +00:00
|
|
|
[<a class="productDetailsToggle" href="javascript:">details</a>]
|
|
|
|
<div class="productDetails">
|
2008-11-12 14:29:32 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>URL:</th>
|
|
|
|
<td>
|
|
|
|
<a href="[% c.uri_for('/download' build.id product.productnr product.name) %]">
|
|
|
|
<tt>[% c.uri_for('/download' build.id product.productnr product.name) %]</tt>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr><th>File size:</th><td>[% product.filesize %] bytes ([% mibs(product.filesize / (1024 * 1024)) %] MiB)</td></tr>
|
|
|
|
<tr><th>SHA-1 hash:</th><td>[% product.sha1hash %]</td></tr>
|
|
|
|
<tr><th>SHA-256 hash:</th><td>[% product.sha256hash %]</td></tr>
|
|
|
|
<tr><th>Full path:</th><td><tt>[% product.path %]</tt></td></tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2008-11-12 15:36:50 +00:00
|
|
|
|
|
|
|
[% CASE "report" %]
|
|
|
|
|
|
|
|
<a href="[% c.uri_for('/download' build.id product.productnr product.name) %]">
|
2008-11-17 23:59:20 +00:00
|
|
|
<img src="/static/images/report.png" alt="Report" />
|
2008-11-12 15:36:50 +00:00
|
|
|
[% SWITCH product.subtype %]
|
|
|
|
[% CASE "coverage" %]
|
|
|
|
Code coverage analysis report
|
|
|
|
[% CASE DEFAULT %]
|
|
|
|
Report of type <tt>[% product.subtype %]</tt>
|
|
|
|
[% END %]
|
|
|
|
</a>
|
|
|
|
|
2008-11-12 16:42:07 +00:00
|
|
|
[% CASE "doc" %]
|
|
|
|
|
|
|
|
<a href="[% c.uri_for('/download' build.id product.productnr product.name) %]">
|
2008-11-17 23:59:20 +00:00
|
|
|
<img src="/static/images/document.png" alt="Document" />
|
2008-11-12 16:42:07 +00:00
|
|
|
[% SWITCH product.subtype %]
|
|
|
|
[% CASE "readme" %]
|
|
|
|
“README” file
|
|
|
|
[% CASE DEFAULT %]
|
|
|
|
Documentation of type <tt>[% product.subtype %]</tt>
|
|
|
|
[% END %]
|
|
|
|
</a>
|
|
|
|
|
2008-11-07 17:10:34 +00:00
|
|
|
[% CASE DEFAULT %]
|
|
|
|
Something of type <tt>[% product.type %]</tt>
|
2008-11-12 15:36:50 +00:00
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
[% END %]
|
|
|
|
</li>
|
|
|
|
[% END -%]
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
|
2008-11-17 13:36:58 +00:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('.productDetailsToggle').toggle(
|
|
|
|
function () { $(".productDetails", $(this).parents(".product")).fadeIn(); },
|
|
|
|
function () { $(".productDetails", $(this).parents(".product")).hide(); }
|
|
|
|
);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2008-11-11 14:45:33 +00:00
|
|
|
[% END %]
|
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
|
2008-11-09 00:48:36 +00:00
|
|
|
[% IF build.dependents %]
|
2008-11-06 13:40:31 +00:00
|
|
|
|
|
|
|
<h2>Used by</h2>
|
|
|
|
|
|
|
|
<p>The following builds have used this build as an input:</p>
|
|
|
|
|
|
|
|
<table class="tablesorter">
|
|
|
|
<thead>
|
2008-11-06 18:26:29 +00:00
|
|
|
<tr><th>Build</th><th>Input name</th><th>System</th><th>Timestamp</th></tr>
|
2008-11-06 13:40:31 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2008-11-09 00:48:36 +00:00
|
|
|
[% FOREACH input IN build.dependents -%]
|
2008-11-06 13:40:31 +00:00
|
|
|
<tr>
|
2008-11-10 10:18:50 +00:00
|
|
|
<td><a href="[% c.uri_for('/build' input.build.id) %]">Job <tt>[% input.build.project.name %]:[% input.build.attrname %]</tt> build [% input.build.id %]</a></td>
|
2008-11-06 13:40:31 +00:00
|
|
|
<td><tt>[% input.name %]</tt></td>
|
2008-11-09 00:48:36 +00:00
|
|
|
<td><tt>[% input.build.system %]</tt></td>
|
|
|
|
<td>[% date.format(input.build.timestamp, '%Y-%m-%d %H:%M:%S') %]</td>
|
2008-11-06 13:40:31 +00:00
|
|
|
</tr>
|
|
|
|
[% END -%]
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
|
2008-11-11 14:45:33 +00:00
|
|
|
[% ELSIF build.schedulingInfo.busy %]
|
|
|
|
|
|
|
|
|
|
|
|
<h2>Log</h2>
|
|
|
|
|
|
|
|
<pre class="buildlog">
|
2008-11-25 00:38:16 +00:00
|
|
|
[% HTML.escape(logtext) -%]
|
2008-11-11 14:45:33 +00:00
|
|
|
</pre>
|
|
|
|
|
|
|
|
|
2008-10-28 10:19:31 +00:00
|
|
|
[% END %]
|
|
|
|
|
2008-11-11 12:54:37 +00:00
|
|
|
|
|
|
|
[% END %]
|
|
|
|
|