2012-04-02 16:45:05 +02:00
|
|
|
[% WRAPPER layout.tt title="Jobset $project.name:$jobset.name evaluation $eval.id" %]
|
2012-04-02 16:11:22 +02:00
|
|
|
[% PROCESS common.tt %]
|
|
|
|
|
2012-04-02 16:45:05 +02:00
|
|
|
<h1>Jobset <tt>[% project.name %]:[% jobset.name %]</tt> evaluation [% eval.id %]</h1>
|
2012-04-02 16:11:22 +02:00
|
|
|
|
|
|
|
<!-- <p>Info on evaluation [% eval.id %]...<p> -->
|
|
|
|
|
|
|
|
[%- BLOCK renderSome -%]
|
|
|
|
[% size = builds.size; max = full ? size : 30; %]
|
|
|
|
[% INCLUDE renderBuildListBody builds=builds.slice(0, (size > max ? max : size) - 1)
|
|
|
|
hideProjectName=1 hideJobsetName=1 %]
|
|
|
|
[% IF size > max %]
|
|
|
|
<tr><td class="centered" colspan="0"><a href="[% c.uri_for(c.controller('JobsetEval').action_for('view'), [eval.id], full => 1) %]"><em>([% size - max %] more builds omitted)</em></a></td></tr>
|
|
|
|
[% END %]
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% INCLUDE renderBuildListHeader unsortable=1 %]
|
|
|
|
|
2012-04-02 16:45:05 +02:00
|
|
|
[% IF new.size > 0 %]
|
|
|
|
<tr><th class="subheader" colspan="0"><strong>New</strong> jobs</th></tr>
|
|
|
|
[% INCLUDE renderSome builds=new %]
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF removed.size > 0 %]
|
|
|
|
<tr><th class="subheader" colspan="0"><strong>Removed</strong> jobs</th></tr>
|
|
|
|
[%- FOREACH j IN removed -%]
|
|
|
|
<tr>
|
|
|
|
<td colspan=2></td>
|
|
|
|
<td>[% INCLUDE renderJobName project=project.name jobset=jobset.name job=j.job %]</td>
|
|
|
|
<td></td>
|
|
|
|
<td><tt>[% j.system %]</tt></td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
[%- END -%]
|
|
|
|
[% END %]
|
|
|
|
|
2012-04-02 16:11:22 +02:00
|
|
|
[% IF nowFail.size > 0 %]
|
2012-04-02 16:45:05 +02:00
|
|
|
<tr><th class="subheader" colspan="0">Jobs that now <strong>fail</strong></th></tr>
|
2012-04-02 16:11:22 +02:00
|
|
|
[% INCLUDE renderSome builds=nowFail %]
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF nowSucceed.size > 0 %]
|
2012-04-02 16:45:05 +02:00
|
|
|
<tr><th class="subheader" colspan="0">Jobs that now <strong>succeed</strong></th></tr>
|
2012-04-02 16:11:22 +02:00
|
|
|
[% INCLUDE renderSome builds=nowSucceed %]
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF stillFail.size > 0 %]
|
2012-04-02 16:45:05 +02:00
|
|
|
<tr><th class="subheader" colspan="0">Jobs that still <strong>fail</strong></th></tr>
|
2012-04-02 16:11:22 +02:00
|
|
|
[% INCLUDE renderSome builds=stillFail %]
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF stillSucceed.size > 0 %]
|
2012-04-02 16:45:05 +02:00
|
|
|
<tr><th class="subheader" colspan="0">Jobs that still <strong>succeed</strong></th></tr>
|
2012-04-02 16:11:22 +02:00
|
|
|
[% INCLUDE renderSome builds=stillSucceed %]
|
|
|
|
[% END %]
|
|
|
|
|
|
|
|
[% INCLUDE renderBuildListFooter %]
|
|
|
|
|
|
|
|
[% END %]
|