Remove per-platform links from the job page

Having different builds within a job is obsolete (issue #60), one
should have different job per platform (e.g. build.x86_64-linux).
This commit is contained in:
Eelco Dolstra 2013-08-16 16:39:42 +02:00
parent 056e2ce503
commit e54c361a95
2 changed files with 0 additions and 5 deletions

View file

@ -36,8 +36,6 @@ sub overview : Chained('job') PathPart('') Args(0) {
, '+as' => ['enabled']
}
) ];
$c->stash->{systems} = [$c->stash->{job}->builds->search({iscurrent => 1}, {select => ["system"], distinct => 1})];
}

View file

@ -25,9 +25,6 @@
<ul>
<li><a href="[% c.uri_for('/job' project.name jobset.name job.name 'latest') %]">Latest successful build</a></li>
<li><a href="[% c.uri_for('/job' project.name jobset.name job.name 'latest-finished') %]">Latest successful build from a finished evaluation</a></li>
[% FOREACH system IN systems %]
<li><a href="[% c.uri_for('/job' project.name jobset.name job.name 'latest-for' system.system) %]">Latest successful build for <tt>[% system.system %]</tt></a></li>
[% END %]
</ul>
</div>