2013-02-20 14:54:33 +00:00
|
|
|
[% WRAPPER layout.tt title="Build $id of job $project.name:$jobset.name:$job.name" %]
|
2008-11-17 23:59:20 +00:00
|
|
|
[% PROCESS common.tt %]
|
2008-11-27 18:27:19 +00:00
|
|
|
[% PROCESS "product-list.tt" %]
|
2008-11-18 14:48:40 +00:00
|
|
|
[% USE HTML %]
|
2010-02-05 14:48:22 +00:00
|
|
|
[% USE Date %]
|
2008-10-28 10:19:31 +00:00
|
|
|
|
2009-04-02 16:15:57 +00:00
|
|
|
[% project = build.project %]
|
|
|
|
[% jobset = build.jobset %]
|
|
|
|
[% job = build.job %]
|
2013-08-15 11:57:47 +00:00
|
|
|
[% isAggregate = constituents.size > 0 %]
|
2009-03-12 23:46:17 +00:00
|
|
|
|
2013-02-13 16:49:28 +00:00
|
|
|
[% BLOCK renderOutputs %]
|
|
|
|
[% start=1; FOREACH output IN outputs %]
|
|
|
|
[% IF !start %],<br/>[% END; start=0; output.path %]
|
|
|
|
[% END %]
|
|
|
|
[% END %]
|
2010-02-05 14:48:22 +00:00
|
|
|
|
2013-02-13 16:49:28 +00:00
|
|
|
[% BLOCK renderBuildSteps %]
|
2013-04-26 12:49:11 +00:00
|
|
|
<table class="table table-striped table-condensed clickable-rows">
|
2013-02-13 16:49:28 +00:00
|
|
|
<thead>
|
|
|
|
<tr><th>Nr</th><th>What</th><th>Duration</th><th>Machine</th><th>Status</th></tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
[% FOREACH step IN build.buildsteps %]
|
|
|
|
[% IF ( type == "All" ) || ( type == "Failed" && step.status != 0 ) || ( type == "Running" && step.busy == 1 ) %]
|
2013-08-30 13:53:25 +00:00
|
|
|
[% has_log = buildStepLogExists(step);
|
2013-02-20 16:02:07 +00:00
|
|
|
log = c.uri_for('/build' build.id 'nixlog' step.stepnr); %]
|
2013-02-22 17:05:04 +00:00
|
|
|
<tr>
|
2013-02-20 16:02:07 +00:00
|
|
|
<td>[% step.stepnr %]</td>
|
|
|
|
<td>
|
|
|
|
[% IF step.type == 0 %]
|
|
|
|
Build of <tt>[% INCLUDE renderOutputs outputs=step.buildstepoutputs %]</tt>
|
|
|
|
[% ELSE %]
|
|
|
|
Substitution of <tt>[% INCLUDE renderOutputs outputs=step.buildstepoutputs %]</tt>
|
|
|
|
[% END %]
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
[% IF step.busy == 0;
|
|
|
|
INCLUDE renderDuration duration = step.stoptime - step.starttime;
|
|
|
|
ELSIF build.finished;
|
|
|
|
INCLUDE renderDuration duration = build.stoptime - step.starttime;
|
|
|
|
ELSE;
|
|
|
|
INCLUDE renderDuration duration = curTime - step.starttime;
|
|
|
|
END %]
|
|
|
|
</td>
|
|
|
|
<td>[% step.machine.split('@').1 %]</td>
|
|
|
|
<td>
|
|
|
|
[% IF step.busy == 1 %]
|
|
|
|
<strong>Building</strong>
|
|
|
|
[% ELSIF step.status == 0 %]
|
|
|
|
Succeeded
|
|
|
|
[% ELSIF step.status == 4 %]
|
|
|
|
<span class="error">Aborted</span>
|
2013-05-09 22:13:01 +00:00
|
|
|
[% ELSIF step.status == 7 %]
|
|
|
|
<span class="error">Timed out</span>
|
|
|
|
[% ELSIF step.status == 8 %]
|
|
|
|
<span class="error">Cached failure</span>
|
2013-02-20 16:02:07 +00:00
|
|
|
[% ELSE %]
|
|
|
|
<span class="error">Failed: [% HTML.escape(step.errormsg) %]</span>
|
|
|
|
[% END %]
|
2013-02-22 17:05:04 +00:00
|
|
|
[%%] [%+ IF has_log; INCLUDE renderLogLinks url=log inRow=1; END %]
|
2013-02-20 16:02:07 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2013-02-13 16:49:28 +00:00
|
|
|
[% END %]
|
2013-02-20 16:02:07 +00:00
|
|
|
[% END %]
|
2013-02-13 16:49:28 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2010-02-05 14:48:22 +00:00
|
|
|
[% END %]
|
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<ul class="nav nav-tabs">
|
2013-10-02 17:10:00 +00:00
|
|
|
<li class="dropdown">
|
|
|
|
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
|
|
|
|
Actions
|
|
|
|
<b class="caret"></b>
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
[% IF build.nixexprinput %]
|
|
|
|
<li><a href="#reproduce" data-toggle="modal">Reproduce locally</a></li>
|
|
|
|
[% END %]
|
|
|
|
[% IF c.user_exists %]
|
|
|
|
<li><a href="[% c.uri_for('/build' build.id 'clone') %]">Clone</a></li>
|
|
|
|
[% IF available %]
|
|
|
|
[% IF build.keep %]
|
|
|
|
<li><a href="[% c.uri_for('/build' build.id 'keep' 0) %]">Unkeep</a></li>
|
|
|
|
[% ELSE %]
|
|
|
|
<li><a href="[% c.uri_for('/build' build.id 'keep' 1) %]">Keep</a></li>
|
|
|
|
[% END %]
|
|
|
|
[% END %]
|
|
|
|
[% IF build.finished %]
|
|
|
|
<li><a href="[% c.uri_for('/build' build.id 'restart') %]">Restart</a></li>
|
|
|
|
[% ELSE %]
|
|
|
|
<li><a href="[% c.uri_for('/build' build.id 'cancel') %]">Cancel</a></li>
|
|
|
|
[% END %]
|
|
|
|
[% IF available && project.releases %]
|
|
|
|
[% INCLUDE menuItem
|
|
|
|
uri = "#add-to-release"
|
|
|
|
title = "Add to release"
|
|
|
|
modal = 1 %]
|
|
|
|
[% END %]
|
|
|
|
[% END %]
|
|
|
|
</ul>
|
|
|
|
</li>
|
2013-10-02 23:17:52 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<li class="active"><a href="#tabs-summary" data-toggle="tab">Summary</a></li>
|
2013-08-15 00:17:06 +00:00
|
|
|
[% IF isAggregate %]<li><a href="#tabs-constituents" data-toggle="tab">Constituents</a></li>[% END %]
|
2013-02-21 12:42:44 +00:00
|
|
|
<li><a href="#tabs-details" data-toggle="tab">Details</a></li>
|
2013-02-22 12:17:07 +00:00
|
|
|
<li><a href="#tabs-buildinputs" data-toggle="tab">Inputs</a></li>
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.buildsteps %]<li><a href="#tabs-buildsteps" data-toggle="tab">Build steps</a></li>[% END %]
|
|
|
|
[% IF build.dependents %]<li><a href="#tabs-usedby" data-toggle="tab">Used by</a></li>[% END%]
|
|
|
|
[% IF prevBuilds %]<li><a href="#tabs-history" data-toggle="tab">History chart</a></li>[% END %]
|
2013-02-20 16:58:27 +00:00
|
|
|
[% IF drvAvailable %]<li><a href="#tabs-build-deps" data-toggle="tab">Build dependencies</a></li>[% END %]
|
|
|
|
[% IF available %]<li><a href="#tabs-runtime-deps" data-toggle="tab">Runtime dependencies</a></li>[% END %]
|
2013-02-20 16:02:07 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div id="generic-tabs" class="tab-content">
|
|
|
|
|
|
|
|
<div id="tabs-summary" class="tab-pane active">
|
|
|
|
|
2013-02-21 12:42:44 +00:00
|
|
|
<table>
|
2013-02-20 16:02:07 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
[% INCLUDE renderBuildStatusIcon size=128, build=build %]
|
|
|
|
</td>
|
|
|
|
<td>
|
2013-02-21 12:42:44 +00:00
|
|
|
<table class="info-table">
|
2013-02-20 16:02:07 +00:00
|
|
|
<tr>
|
|
|
|
<th>Build ID:</th>
|
|
|
|
<td>[% build.id %]</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Status:</th>
|
2013-08-15 00:17:06 +00:00
|
|
|
<td>
|
|
|
|
[% INCLUDE renderStatus build=build icon=0 %]
|
|
|
|
[% IF isAggregate;
|
2013-08-15 00:33:10 +00:00
|
|
|
nrConstituents = 0;
|
2013-08-15 00:17:06 +00:00
|
|
|
nrFinished = 0;
|
2013-08-15 00:33:10 +00:00
|
|
|
nrFailedConstituents = 0;
|
2013-08-15 01:28:21 +00:00
|
|
|
FOREACH b IN constituents;
|
2013-08-15 00:33:10 +00:00
|
|
|
nrConstituents = nrConstituents + 1;
|
2013-08-15 00:17:06 +00:00
|
|
|
IF b.finished; nrFinished = nrFinished + 1; END;
|
2013-08-15 00:33:10 +00:00
|
|
|
IF b.finished && b.buildstatus != 0; nrFailedConstituents = nrFailedConstituents + 1; END;
|
2013-08-15 00:17:06 +00:00
|
|
|
END;
|
|
|
|
%];
|
2013-08-15 00:33:10 +00:00
|
|
|
[%+ IF nrFinished == nrMembers && nrFailedConstituents == 0 %]
|
|
|
|
all [% nrConstituents %] constituent builds succeeded
|
2013-08-15 00:17:06 +00:00
|
|
|
[% ELSE %]
|
2013-08-15 00:33:10 +00:00
|
|
|
[% nrFailedConstituents %] out of [% nrConstituents %] constituent builds failed
|
|
|
|
[% IF nrFinished < nrConstituents %]
|
|
|
|
([% nrConstituents - nrFinished %] still pending)
|
2013-08-15 00:17:06 +00:00
|
|
|
[% END %]
|
|
|
|
[% END %]
|
|
|
|
[% END %]
|
|
|
|
</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>System:</th>
|
|
|
|
<td><tt>[% build.system %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
[% IF build.releasename %]
|
|
|
|
<tr>
|
|
|
|
<th>Release name:</th>
|
|
|
|
<td><tt>[% HTML.escape(build.releasename) %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
[% ELSE %]
|
2013-02-20 17:13:20 +00:00
|
|
|
<tr>
|
2013-02-20 16:02:07 +00:00
|
|
|
<th>Nix name:</th>
|
|
|
|
<td><tt>[% build.nixname %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
2013-02-21 17:42:18 +00:00
|
|
|
[% IF eval %]
|
|
|
|
<tr>
|
|
|
|
<th>Part of:</th>
|
|
|
|
<td>
|
|
|
|
<a href="[% c.uri_for(c.controller('JobsetEval').action_for('view'), [eval.id]) %]">evaluation [% eval.id %]</a>
|
2013-02-21 17:49:57 +00:00
|
|
|
[% IF nrEvals > 1 +%] (and <a href="[% c.uri_for('/build' build.id 'evals') %]">[% nrEvals - 1 %] others</a>)[% END %]
|
2013-02-21 17:42:18 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.iscachedbuild %]
|
|
|
|
<tr>
|
|
|
|
<th>Cached from:</th>
|
2013-05-24 16:43:31 +00:00
|
|
|
<td>[% IF cachedBuild; INCLUDE renderFullBuildLink build=cachedBuild; ELSE %]<em>unknown</em>[% END %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
[% END %]
|
2013-08-15 00:17:06 +00:00
|
|
|
[% IF !isAggregate && build.finished %]
|
2013-02-20 16:07:20 +00:00
|
|
|
<tr>
|
|
|
|
<th>Duration:</th>
|
|
|
|
<td>[% actualBuild = build.iscachedbuild ? cachedBuild : build;
|
2013-05-23 14:45:49 +00:00
|
|
|
INCLUDE renderDuration duration = actualBuild.stoptime - actualBuild.starttime %];
|
|
|
|
finished at [% INCLUDE renderDateTime timestamp = actualBuild.stoptime %]</td>
|
2013-02-20 16:07:20 +00:00
|
|
|
</tr>
|
2013-02-26 15:01:00 +00:00
|
|
|
[% END %]
|
2013-08-30 13:53:25 +00:00
|
|
|
[% IF !isAggregate && buildLogExists(build) %]
|
2013-02-20 16:02:07 +00:00
|
|
|
<tr>
|
|
|
|
<th>Logfile:</th>
|
2013-01-22 13:41:02 +00:00
|
|
|
<td>
|
2013-02-20 16:02:07 +00:00
|
|
|
<a class="btn btn-mini" href="[% c.uri_for('/build' build.id 'log') %]">pretty</a>
|
|
|
|
<a class="btn btn-mini" href="[% c.uri_for('/build' build.id 'log' 'raw') %]">raw</a>
|
|
|
|
<a class="btn btn-mini" href="[% c.uri_for('/build' build.id 'log' 'tail-reload') %]">tail</a>
|
2013-01-22 13:41:02 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2013-02-20 16:02:07 +00:00
|
|
|
[% END %]
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2013-08-15 00:17:06 +00:00
|
|
|
[% IF build.buildproducts && !isAggregate %]
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<h3>Build products</h3>
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF !available %]
|
|
|
|
<p class="error">Note: this build is no longer available.</p>
|
|
|
|
[% END %]
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% INCLUDE renderProductList latestRoot=['/job' build.project.name build.jobset.name build.job.name 'latest'] %]
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% END %]
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.busy %]
|
|
|
|
<h3>Running build steps</h3>
|
|
|
|
[% INCLUDE renderBuildSteps type="Running" %]
|
|
|
|
[% END %]
|
2010-02-05 14:48:22 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.finished %]
|
2013-02-22 12:17:07 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.buildsteps && build.buildstatus != 0 && build.buildstatus != 6 %]
|
|
|
|
<h3>Failed build steps</h3>
|
|
|
|
[% INCLUDE renderBuildSteps type="Failed" %]
|
|
|
|
[% END %]
|
2010-02-05 14:48:22 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF prevSuccessfulBuild %]
|
|
|
|
<h3>Changes</h3>
|
|
|
|
<table class="table table-striped table-condensed">
|
|
|
|
<thead>
|
2013-04-26 15:12:43 +00:00
|
|
|
<th>Last successful build [% INCLUDE renderDateTime timestamp = prevSuccessfulBuild.timestamp %]</th>
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF prevSuccessfulBuild && firstBrokenBuild && firstBrokenBuild.id != build.id %]
|
2013-04-26 15:12:43 +00:00
|
|
|
<th>First broken build [% INCLUDE renderDateTime timestamp = firstBrokenBuild.timestamp %]
|
2013-02-20 16:02:07 +00:00
|
|
|
<a class="btn btn-mini" href="[% c.uri_for(c.controller('API').action_for('logdiff') prevSuccessfulBuild.id firstBrokenBuild.id ) %]">log diff</a>
|
|
|
|
</th>
|
2011-10-12 12:43:31 +00:00
|
|
|
[% END %]
|
2013-04-26 15:12:43 +00:00
|
|
|
<th>This build [% INCLUDE renderDateTime timestamp = build.timestamp %]
|
2013-02-20 16:02:07 +00:00
|
|
|
<a class="btn btn-mini" href="[% c.uri_for(c.controller('API').action_for('logdiff') prevSuccessfulBuild.id build.id) %]">log diff</a>
|
|
|
|
</th>
|
|
|
|
</thead>
|
|
|
|
<tr>
|
2013-02-22 12:17:07 +00:00
|
|
|
<td valign="center">[% INCLUDE renderBuildStatusIcon build=prevSuccessfulBuild size=32 %] [% INCLUDE renderBuildLink build=prevSuccessfulBuild %]</td>
|
|
|
|
[% IF prevSuccessfulBuild && firstBrokenBuild && firstBrokenBuild.id != build.id %]
|
|
|
|
<td valign="center">[% INCLUDE renderBuildStatusIcon build=firstBrokenBuild size=32 %] [% INCLUDE renderBuildLink build=firstBrokenBuild %]</td>
|
|
|
|
[% END %]
|
|
|
|
<td>[% INCLUDE renderBuildStatusIcon build=build size=32 %] [% INCLUDE renderBuildLink build=build %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td></td>
|
2013-02-22 12:17:07 +00:00
|
|
|
[% IF prevSuccessfulBuild && firstBrokenBuild && firstBrokenBuild.id != build.id %]
|
2013-03-05 15:19:33 +00:00
|
|
|
<td>[% INCLUDE renderInputDiff inputs1=prevSuccessfulBuild.inputs inputs2=firstBrokenBuild.inputs %]</td>
|
2013-02-22 12:17:07 +00:00
|
|
|
[% END %]
|
2013-03-05 15:19:33 +00:00
|
|
|
<td>[% INCLUDE renderInputDiff inputs1=prevSuccessfulBuild.inputs inputs2=build.inputs %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF build.errormsg && build.buildstatus != 5 %]
|
|
|
|
<h2 id="nix-error">Nix error output</h2>
|
|
|
|
<pre class="buildlog">[% HTML.escape(build.errormsg) %]</pre>
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF logtext %]
|
|
|
|
<h2>Log</h2>
|
|
|
|
<pre class="buildlog">[% HTML.escape(logtext) %]</pre>
|
|
|
|
[% END %]
|
2010-02-23 13:08:58 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
</div>
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2013-08-15 00:17:06 +00:00
|
|
|
[% IF isAggregate %]
|
2013-08-14 22:30:19 +00:00
|
|
|
|
2013-08-15 00:17:06 +00:00
|
|
|
<div id="tabs-constituents" class="tab-pane">
|
2013-08-14 22:30:19 +00:00
|
|
|
|
|
|
|
<p>This build is an aggregate of the following builds:</p>
|
|
|
|
|
2013-08-15 01:35:18 +00:00
|
|
|
[% INCLUDE renderBuildList builds=constituents hideProjectName=1 hideJobsetName=1 %]
|
2013-08-14 22:30:19 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
[% END %]
|
|
|
|
|
2013-02-21 12:42:44 +00:00
|
|
|
<div id="tabs-details" class="tab-pane">
|
2013-02-20 16:02:07 +00:00
|
|
|
|
2013-02-21 12:42:44 +00:00
|
|
|
<table class="info-table">
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.nixexprinput %]
|
|
|
|
<tr>
|
|
|
|
<th>Nix expression:</th>
|
|
|
|
<td>file <tt>[% HTML.escape(build.nixexprpath) %]</tt> in input <tt>[% HTML.escape(build.nixexprinput) %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
|
|
|
<tr>
|
|
|
|
<th>Nix name:</th>
|
|
|
|
<td><tt>[% build.nixname %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Short description:</th>
|
2013-05-24 16:43:31 +00:00
|
|
|
<td>[% IF build.description %][% HTML.escape(build.description) %][% ELSE %]<em>not given</em>[% END %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Long description:</th>
|
2013-05-24 16:43:31 +00:00
|
|
|
<td>[% IF build.longdescription %][% HTML.escape(build.longdescription) %][% ELSE %]<em>not given</em>[% END %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>License:</th>
|
2013-05-24 16:43:31 +00:00
|
|
|
<td>[% IF build.license %][% HTML.escape(build.license) %][% ELSE %]<em>not given</em>[% END %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Homepage:</th>
|
2013-05-24 16:43:31 +00:00
|
|
|
<td>[% IF build.homepage %]<a [% HTML.attributes(href => build.homepage) %]>[% HTML.escape(build.homepage) %]</a>[% ELSE %]<em>not given</em>[% END %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Maintainer(s):</th>
|
2013-05-24 16:43:31 +00:00
|
|
|
<td>[% IF build.maintainers %][% HTML.escape(build.maintainers) %][% ELSE %]<em>not given</em>[% END %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>System:</th>
|
|
|
|
<td><tt>[% build.system %]</tt></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Derivation store path:</th>
|
2013-02-20 16:58:27 +00:00
|
|
|
<td><tt>[% build.drvpath %]</tt></td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Output store paths:</th>
|
2013-02-20 16:58:27 +00:00
|
|
|
<td><tt>[% INCLUDE renderOutputs outputs=build.buildoutputs %]</tt></td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2013-05-23 14:45:49 +00:00
|
|
|
<th>Queued:</th>
|
2013-02-20 16:02:07 +00:00
|
|
|
<td>[% INCLUDE renderDateTime timestamp = build.timestamp %]</td>
|
|
|
|
</tr>
|
2013-05-23 14:45:49 +00:00
|
|
|
[% IF build.finished && !build.iscachedbuild %]
|
2013-02-20 16:02:07 +00:00
|
|
|
<tr>
|
|
|
|
<th>Build started:</th>
|
2013-05-23 14:45:49 +00:00
|
|
|
<td>[% INCLUDE renderDateTime timestamp = build.starttime %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Build finished:</th>
|
2013-05-23 14:45:49 +00:00
|
|
|
<td>[% INCLUDE renderDateTime timestamp = build.stoptime %]</td>
|
2013-02-20 16:02:07 +00:00
|
|
|
</tr>
|
|
|
|
[% END %]
|
|
|
|
[% IF !build.finished %]
|
|
|
|
<tr>
|
|
|
|
<th>Priority:</th>
|
|
|
|
<td>[% build.priority %]</td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
|
|
|
[% IF build.finished && build.buildproducts %]
|
|
|
|
<tr>
|
|
|
|
<th>Availability:</th>
|
|
|
|
<td>
|
|
|
|
[% IF !available %]
|
|
|
|
<em>Build output is no longer available</em>
|
|
|
|
[% ELSIF build.keep %]
|
|
|
|
<em>Build output will be kept permanently</em>
|
|
|
|
[% ELSE %]
|
|
|
|
<em>Build output is available, but may be garbage-collected</em>
|
|
|
|
[% END %]
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-01-22 21:48:02 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<div id="tabs-buildinputs" class="tab-pane">
|
|
|
|
|
2013-03-05 15:19:33 +00:00
|
|
|
[% INCLUDE renderInputs inputs=build.inputs %]
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF prevBuild %]
|
2013-02-22 12:17:07 +00:00
|
|
|
<h3>Changes since previous [% INCLUDE renderBuildLink build=prevBuild %]</h3>
|
2013-03-05 15:19:33 +00:00
|
|
|
[% INCLUDE renderInputDiff inputs2=build.inputs inputs1=prevBuild.inputs %]
|
2013-02-20 16:02:07 +00:00
|
|
|
[% END %]
|
2008-11-05 06:23:41 +00:00
|
|
|
|
2012-04-17 09:35:37 +00:00
|
|
|
</div>
|
2010-02-05 14:48:22 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.buildsteps %]
|
|
|
|
<div id="tabs-buildsteps" class="tab-pane">
|
|
|
|
[% INCLUDE renderBuildSteps type="All" %]
|
|
|
|
</div>
|
|
|
|
[% END %]
|
2011-03-11 08:50:42 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF build.dependents %]
|
|
|
|
<div id="tabs-usedby" class="tab-pane">
|
2011-03-11 08:50:42 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<p>The following builds have used this build as an input:</p>
|
|
|
|
|
2013-04-26 12:49:11 +00:00
|
|
|
<table class="table table-condensed table-striped">
|
2013-02-20 16:02:07 +00:00
|
|
|
<thead>
|
|
|
|
<tr><th>Build</th><th>Input name</th><th>System</th><th>Timestamp</th></tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
[% FOREACH input IN build.dependents %]
|
|
|
|
<tr>
|
|
|
|
<td>[% INCLUDE renderFullBuildLink build=input.build %]</td>
|
|
|
|
<td><tt>[% input.name %]</tt></td>
|
|
|
|
<td><tt>[% input.build.system %]</tt></td>
|
|
|
|
<td>[% INCLUDE renderDateTime timestamp = input.build.timestamp %]</td>
|
|
|
|
</tr>
|
|
|
|
[% END %]
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
[% END %]
|
2010-02-10 10:15:09 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
[% IF prevBuilds %]
|
|
|
|
<div id="tabs-history" class="tab-pane">
|
2013-02-20 16:58:27 +00:00
|
|
|
<h3>Build time history (in seconds)</h3>
|
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<div id="placeholder" style="width:800px;height:400px;"></div>
|
|
|
|
<div id="overview" style="margin-left:50px;margin-top:20px;width:600px;height:50px"></div>
|
|
|
|
|
2013-09-25 10:34:13 +00:00
|
|
|
<script src="[% c.uri_for("/static/js/flot/jquery.flot.js") %]" type="text/javascript"></script>
|
|
|
|
<script src="[% c.uri_for("/static/js/flot/jquery.flot.selection.js") %]" type="text/javascript"></script>
|
2013-02-20 16:02:07 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
var d = [];
|
|
|
|
var ids = [];
|
|
|
|
[% FOREACH prevbuild IN prevBuilds; IF prevbuild.build.starttime != 0 %]
|
|
|
|
d.push([[% prevbuild.starttime * 1000 %],[% prevbuild.get_column('actualBuildTime') %]]);
|
|
|
|
ids[[% prevbuild.starttime * 1000 %]] = [% prevbuild.id %] ;
|
|
|
|
[% END; END %]
|
|
|
|
|
|
|
|
var options = {
|
|
|
|
xaxis: { mode: "time" },
|
|
|
|
selection: { mode: "x" },
|
|
|
|
points: { show: true },
|
|
|
|
lines: { show: true },
|
|
|
|
grid: {
|
|
|
|
clickable: true,
|
|
|
|
hoverable: true,
|
|
|
|
hoverFill: '#444',
|
|
|
|
hoverRadius: 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var plot = $.plot($("#placeholder"), [d], options);
|
|
|
|
|
|
|
|
var overview = $.plot($("#overview"), [d], {
|
|
|
|
series: {
|
|
|
|
lines: { show: true, lineWidth: 1 },
|
|
|
|
shadowSize: 0
|
|
|
|
},
|
|
|
|
xaxis: { ticks: [], mode: "time" },
|
|
|
|
yaxis: { ticks: [], min: 0, autoscaleMargin: 0.1 },
|
|
|
|
selection: { mode: "x" }
|
|
|
|
});
|
|
|
|
|
|
|
|
// now connect the two
|
|
|
|
|
|
|
|
$("#placeholder").bind("plotselected", function (event, ranges) {
|
|
|
|
// do the zooming
|
|
|
|
plot = $.plot($("#placeholder"), [d],
|
|
|
|
$.extend(true, {}, options, {
|
|
|
|
xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to }
|
|
|
|
}));
|
|
|
|
|
|
|
|
// don't fire event on the overview to prevent eternal loop
|
|
|
|
overview.setSelection(ranges, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#overview").bind("plotselected", function (event, ranges) {
|
|
|
|
plot.setSelection(ranges);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#placeholder").bind("plotclick", function (e, pos, item) {
|
|
|
|
if (item) {
|
|
|
|
plot.highlight(item.series, item.datapoint);
|
|
|
|
buildid = ids[item.datapoint[0]];
|
|
|
|
window.location = "/build/"+buildid;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2013-02-20 16:58:27 +00:00
|
|
|
<h3>Store path size history (in MB)</h3>
|
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<div id="placeholder-size" style="width:800px;height:400px;"></div>
|
|
|
|
<div id="overview-size" style="margin-left:50px;margin-top:20px;width:600px;height:50px"></div>
|
2013-02-20 16:58:27 +00:00
|
|
|
|
2013-02-20 16:02:07 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
var d = [];
|
|
|
|
var ids = [];
|
|
|
|
[% FOREACH prevbuild IN prevBuilds; IF prevbuild.size != 0 %]
|
|
|
|
d.push([[% prevbuild.starttime * 1000 %],[% prevbuild.size / (1024*1024.0) %]]);
|
|
|
|
ids[[% prevbuild.starttime * 1000 %]] = [% prevbuild.id %] ;
|
|
|
|
[% END; END %]
|
|
|
|
|
|
|
|
var options = {
|
|
|
|
xaxis: { mode: "time" },
|
|
|
|
selection: { mode: "x" },
|
|
|
|
points: { show: true },
|
|
|
|
lines: { show: true },
|
|
|
|
grid: {
|
|
|
|
clickable: true,
|
|
|
|
hoverable: true,
|
|
|
|
hoverFill: '#444',
|
|
|
|
hoverRadius: 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
var plot = $.plot($("#placeholder-size"), [d], options);
|
|
|
|
|
|
|
|
var overview = $.plot($("#overview-size"), [d], {
|
|
|
|
series: {
|
|
|
|
lines: { show: true, lineWidth: 1 },
|
|
|
|
shadowSize: 0
|
|
|
|
},
|
|
|
|
xaxis: { ticks: [], mode: "time" },
|
|
|
|
yaxis: { ticks: [], min: 0, autoscaleMargin: 0.1 },
|
|
|
|
selection: { mode: "x" }
|
|
|
|
});
|
|
|
|
|
|
|
|
// now connect the two
|
|
|
|
|
|
|
|
$("#placeholder-size").bind("plotselected", function (event, ranges) {
|
|
|
|
// do the zooming
|
|
|
|
plot = $.plot($("#placeholder-size"), [d],
|
|
|
|
$.extend(true, {}, options, {
|
|
|
|
xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to }
|
|
|
|
}));
|
|
|
|
|
|
|
|
// don't fire event on the overview to prevent eternal loop
|
|
|
|
overview.setSelection(ranges, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#overview-size").bind("plotselected", function (event, ranges) {
|
|
|
|
plot.setSelection(ranges);
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#placeholder-size").bind("plotclick", function (e, pos, item) {
|
|
|
|
if (item) {
|
|
|
|
plot.highlight(item.series, item.datapoint);
|
|
|
|
buildid = ids[item.datapoint[0]];
|
|
|
|
window.location = "/build/"+buildid;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2010-02-10 10:15:09 +00:00
|
|
|
</div>
|
2013-02-20 16:02:07 +00:00
|
|
|
[% END %]
|
2010-02-10 10:15:09 +00:00
|
|
|
|
2013-02-20 16:58:27 +00:00
|
|
|
[% IF drvAvailable %]
|
2013-02-22 12:36:15 +00:00
|
|
|
[% INCLUDE makeLazyTab tabName="tabs-build-deps" uri=c.uri_for('/build' build.id 'build-deps') %]
|
2013-02-20 16:58:27 +00:00
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF available %]
|
2013-02-22 12:36:15 +00:00
|
|
|
[% INCLUDE makeLazyTab tabName="tabs-runtime-deps" uri=c.uri_for('/build' build.id 'runtime-deps') %]
|
2013-02-20 16:58:27 +00:00
|
|
|
[% END %]
|
|
|
|
|
2010-02-05 14:48:22 +00:00
|
|
|
</div>
|
2008-11-06 13:40:31 +00:00
|
|
|
|
2013-02-20 17:13:20 +00:00
|
|
|
|
2013-08-15 01:07:20 +00:00
|
|
|
[% IF c.user_exists && available && project.releases %]
|
|
|
|
<div id="add-to-release" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
|
<form class="form-horizontal" action="[% c.uri_for('/build' build.id 'add-to-release') %]" method="post">
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label">Add to release</label>
|
|
|
|
<div class="controls">
|
|
|
|
<select class="span2" name="name">
|
|
|
|
[% FOREACH r IN project.releases %]
|
|
|
|
<option>[% HTML.escape(r.name) %]</option>
|
|
|
|
[% END %]
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="submit" class="btn btn-primary">Add</button>
|
|
|
|
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
|
2013-10-02 17:10:00 +00:00
|
|
|
<div id="reproduce" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true">
|
|
|
|
[% url = c.uri_for('/build' build.id 'reproduce') %]
|
|
|
|
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
<h3>Reproduce this build</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
|
|
|
<p>You can reproduce this build on your own machine by downloading
|
|
|
|
<a [% HTML.attributes(href => url) %]>a script</a> that checks out
|
|
|
|
all inputs of the build and then invokes Nix to perform the build.
|
|
|
|
This script requires that you have Nix on your system.</p>
|
|
|
|
|
|
|
|
<p>To download and execute the script from the command line, run the
|
|
|
|
following command:</p>
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
<span class="shell-prompt">$ </span>bash <(curl <a [% HTML.attributes(href => url) %]>[% HTML.escape(url) %]</a>)
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
2013-10-02 23:17:52 +00:00
|
|
|
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
|
2013-10-02 17:10:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2008-11-11 12:54:37 +00:00
|
|
|
[% END %]
|