Builds page: show RunCommand logs

This commit is contained in:
Graham Christensen
2021-11-19 15:21:45 -05:00
parent a7aeb766aa
commit fe149613b3
2 changed files with 53 additions and 1 deletions

View File

@ -37,6 +37,7 @@ sub buildChain :Chained('/') :PathPart('build') :CaptureArgs(1) {
$c->stash->{project} = $c->stash->{build}->project;
$c->stash->{jobset} = $c->stash->{build}->jobset;
$c->stash->{job} = $c->stash->{build}->job;
$c->stash->{runcommandlogs} = [$c->stash->{build}->runcommandlogs->search({}, {order_by => ["id DESC"]})];
}