project, or jobset, or globally, but that's not all that useful). This is useful if you want to link to the latest build.
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
[% WRAPPER layout.tt title="Job ‘$project.name:$jobset.name:$job.name’" %]
|
||
[% PROCESS common.tt %]
|
||
|
||
|
||
<h1>Job <tt>[% project.name %]:[% jobset.name %]:[% job.name %]</tt></h1>
|
||
|
||
|
||
<h2>Channels</h2>
|
||
|
||
<p>This job provides the following Nix channels:</p>
|
||
|
||
<ul>
|
||
<li>
|
||
<a href="[% c.uri_for('/job' project.name jobset.name job.name
|
||
'channel' 'latest') %]"><tt>latest</tt></a> — contains the latest
|
||
successful build for each platform.
|
||
</li>
|
||
<li>
|
||
<a href="[% c.uri_for('/job' project.name jobset.name job.name
|
||
'channel' 'all') %]"><tt>all</tt></a> — contains every successful
|
||
build of this job.
|
||
</li>
|
||
</ul>
|
||
|
||
|
||
<h2>Latest builds</h2>
|
||
|
||
<ul>
|
||
<li><a href="[% c.uri_for('/job' project.name jobset.name job.name
|
||
'latest') %]">Latest successful build.</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>
|
||
|
||
|
||
<h2>Statistics</h2>
|
||
|
||
[% INCLUDE showBuildStats %]
|
||
|
||
|
||
[% END %]
|