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->{available} = all { isValidPath($_->path) } $build->buildoutputs->all;
|
||||||
$c->stash->{drvAvailable} = isValidPath $build->drvpath;
|
$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) {
|
if ($build->finished && $build->iscachedbuild) {
|
||||||
my $path = ($build->buildoutputs)[0]->path or die;
|
my $path = ($build->buildoutputs)[0]->path or die;
|
||||||
my $cachedBuildStep = findBuildStepByOutPath($self, $c, $path);
|
my $cachedBuildStep = findBuildStepByOutPath($self, $c, $path);
|
||||||
|
|
|
@ -280,11 +280,6 @@
|
||||||
|
|
||||||
[% END %]
|
[% END %]
|
||||||
|
|
||||||
[% IF logtext %]
|
|
||||||
<h2>Log</h2>
|
|
||||||
<pre class="buildlog">[% HTML.escape(logtext) %]</pre>
|
|
||||||
[% END %]
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
[% IF isAggregate %]
|
[% IF isAggregate %]
|
||||||
|
|
Loading…
Reference in a new issue