JobsetEval: allow restarting failed builds even with no eval to compare to
This commit is contained in:
@ -83,6 +83,7 @@ sub view_GET {
|
||||
$c->stash->{removed} = [];
|
||||
$c->stash->{unfinished} = [];
|
||||
$c->stash->{aborted} = [];
|
||||
$c->stash->{failed} = [];
|
||||
|
||||
my $n = 0;
|
||||
foreach my $build (@builds) {
|
||||
@ -119,6 +120,9 @@ sub view_GET {
|
||||
} else {
|
||||
push @{$c->stash->{new}}, $build if !$found;
|
||||
}
|
||||
if ($build->buildstatus != 0) {
|
||||
push @{$c->stash->{failed}}, $build;
|
||||
}
|
||||
}
|
||||
|
||||
$c->stash->{full} = ($c->req->params->{full} || "0") eq "1";
|
||||
|
Reference in New Issue
Block a user