forked from lix-project/hydra
Remove display of queue runner log file (it no longer exists)
This commit is contained in:
parent
e35b704d80
commit
ae52fc7f61
|
@ -67,10 +67,6 @@ sub build_GET {
|
|||
$c->stash->{available} = all { isValidPath($_->path) } $build->buildoutputs->all;
|
||||
$c->stash->{drvAvailable} = isValidPath $build->drvpath;
|
||||
|
||||
if (!$build->finished && $build->busy) {
|
||||
$c->stash->{logtext} = decode("utf-8", read_file($build->logfile, err_mode => 'quiet') // "");
|
||||
}
|
||||
|
||||
if ($build->finished && $build->iscachedbuild) {
|
||||
my $path = ($build->buildoutputs)[0]->path or die;
|
||||
my $cachedBuildStep = findBuildStepByOutPath($self, $c, $path);
|
||||
|
|
|
@ -280,11 +280,6 @@
|
|||
|
||||
[% END %]
|
||||
|
||||
[% IF logtext %]
|
||||
<h2>Log</h2>
|
||||
<pre class="buildlog">[% HTML.escape(logtext) %]</pre>
|
||||
[% END %]
|
||||
|
||||
</div>
|
||||
|
||||
[% IF isAggregate %]
|
||||
|
|
Loading…
Reference in a new issue