forked from lix-project/hydra
always show latest 10 builds on job page
This commit is contained in:
parent
1395717245
commit
f4204df39a
|
@ -29,7 +29,7 @@ sub overview : Chained('job') PathPart('') Args(0) {
|
||||||
, '+as' => ["releasename", "buildstatus"], order_by => 'system' })];
|
, '+as' => ["releasename", "buildstatus"], order_by => 'system' })];
|
||||||
|
|
||||||
$c->stash->{lastBuilds} = [$c->stash->{job}->builds->search({ finished => 1 }, { join => 'resultInfo', '+select' => ["resultInfo.releasename", "resultInfo.buildstatus"]
|
$c->stash->{lastBuilds} = [$c->stash->{job}->builds->search({ finished => 1 }, { join => 'resultInfo', '+select' => ["resultInfo.releasename", "resultInfo.buildstatus"]
|
||||||
, '+as' => ["releasename", "buildstatus"], order_by => 'timestamp DESC', rows => 5 })];
|
, '+as' => ["releasename", "buildstatus"], order_by => 'timestamp DESC', rows => 10 })];
|
||||||
|
|
||||||
$c->stash->{runningBuilds} = [$c->stash->{job}->builds->search({busy => 1}, { join => ['schedulingInfo', 'project'] , order_by => ["priority DESC", "timestamp"]
|
$c->stash->{runningBuilds} = [$c->stash->{job}->builds->search({busy => 1}, { join => ['schedulingInfo', 'project'] , order_by => ["priority DESC", "timestamp"]
|
||||||
, '+select' => ['project.enabled', 'schedulingInfo.priority', 'schedulingInfo.disabled', 'schedulingInfo.busy']
|
, '+select' => ['project.enabled', 'schedulingInfo.priority', 'schedulingInfo.disabled', 'schedulingInfo.busy']
|
||||||
|
|
|
@ -17,19 +17,18 @@
|
||||||
<!-- <li><a href="#tabs-statistics">Statistics</a></li> -->
|
<!-- <li><a href="#tabs-statistics">Statistics</a></li> -->
|
||||||
</ul>
|
</ul>
|
||||||
<div id="tabs-status">
|
<div id="tabs-status">
|
||||||
[% IF currentBuilds.size != 0 %]
|
[% IF runningBuilds.size == 0 %]
|
||||||
<h2>Finished builds</h2>
|
<h2>Latest builds (latest evaluation)</h2>
|
||||||
[% INCLUDE renderBuildList builds=currentBuilds showStatusChange=0 %]
|
[% INCLUDE renderBuildList builds=currentBuilds showStatusChange=0 %]
|
||||||
[% ELSE %]
|
|
||||||
[% IF lastBuilds.size != 0 %]
|
|
||||||
<h2>Last 5 builds</h2>
|
|
||||||
[% INCLUDE renderBuildList builds=lastBuilds showStatusChange=0 %]
|
|
||||||
[% END %]
|
|
||||||
[% END %]
|
[% END %]
|
||||||
[% IF runningBuilds.size != 0 %]
|
[% IF runningBuilds.size != 0 %]
|
||||||
<h2>Running builds</h2>
|
<h2>Running builds</h2>
|
||||||
[% INCLUDE renderBuildList builds=runningBuilds showSchedulingInfo=1 hideResultInfo=1 %]
|
[% INCLUDE renderBuildList builds=runningBuilds showSchedulingInfo=1 hideResultInfo=1 %]
|
||||||
[% END %]
|
[% END %]
|
||||||
|
[% IF lastBuilds.size != 0 %]
|
||||||
|
<h2>Last 10 builds</h2>
|
||||||
|
[% INCLUDE renderBuildList builds=lastBuilds showStatusChange=0 %]
|
||||||
|
[% END %]
|
||||||
</div>
|
</div>
|
||||||
<div id="tabs-channels">
|
<div id="tabs-channels">
|
||||||
<p>This job provides the following Nix channels:</p>
|
<p>This job provides the following Nix channels:</p>
|
||||||
|
|
Loading…
Reference in a new issue