Let Builds.timestamp refer to the time the build was added
Previously, for scheduled builds, "timestamp" contained the time the build was added to the queue, while for finished builds, it was the time the build finished. Now it's always the former.
This commit is contained in:
parent
e09622eb29
commit
57b2bb0674
|
@ -66,7 +66,7 @@ sub all : Chained('get_builds') PathPart {
|
||||||
|
|
||||||
$c->stash->{builds} = [ $c->stash->{allBuilds}->search(
|
$c->stash->{builds} = [ $c->stash->{allBuilds}->search(
|
||||||
{ finished => 1 },
|
{ finished => 1 },
|
||||||
{ order_by => "timestamp DESC"
|
{ order_by => "stoptime DESC"
|
||||||
, columns => [@buildListColumns]
|
, columns => [@buildListColumns]
|
||||||
, rows => $resultsPerPage
|
, rows => $resultsPerPage
|
||||||
, page => $page }) ];
|
, page => $page }) ];
|
||||||
|
@ -97,7 +97,7 @@ sub latest : Chained('get_builds') PathPart('latest') {
|
||||||
my ($self, $c, @rest) = @_;
|
my ($self, $c, @rest) = @_;
|
||||||
|
|
||||||
my ($latest) = $c->stash->{allBuilds}->search(
|
my ($latest) = $c->stash->{allBuilds}->search(
|
||||||
{finished => 1, buildstatus => 0}, {order_by => ["isCurrent DESC", "timestamp DESC"]});
|
{finished => 1, buildstatus => 0}, {order_by => ["id DESC"]});
|
||||||
|
|
||||||
notFound($c, "There is no successful build to redirect to.") unless defined $latest;
|
notFound($c, "There is no successful build to redirect to.") unless defined $latest;
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ sub latest_for : Chained('get_builds') PathPart('latest-for') {
|
||||||
notFound($c, "You need to specify a platform type in the URL.") unless defined $system;
|
notFound($c, "You need to specify a platform type in the URL.") unless defined $system;
|
||||||
|
|
||||||
my ($latest) = $c->stash->{allBuilds}->search(
|
my ($latest) = $c->stash->{allBuilds}->search(
|
||||||
{finished => 1, buildstatus => 0, system => $system}, {order_by => ["isCurrent DESC", "timestamp DESC"]});
|
{finished => 1, buildstatus => 0, system => $system}, {order_by => ["id DESC"]});
|
||||||
|
|
||||||
notFound($c, "There is no successful build for platform `$system' to redirect to.") unless defined $latest;
|
notFound($c, "There is no successful build for platform `$system' to redirect to.") unless defined $latest;
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@ sub latestbuilds : Chained('api') PathPart('latestbuilds') Args(0) {
|
||||||
$filter->{job} = $job if !$job eq "";
|
$filter->{job} = $job if !$job eq "";
|
||||||
$filter->{system} = $system if !$system eq "";
|
$filter->{system} = $system if !$system eq "";
|
||||||
|
|
||||||
my @latest = $c->model('DB::Builds')->search($filter, {rows => $nr, order_by => ["timestamp DESC"] });
|
my @latest = $c->model('DB::Builds')->search($filter, {rows => $nr, order_by => ["id DESC"] });
|
||||||
|
|
||||||
my @list;
|
my @list;
|
||||||
push @list, buildToHash($_) foreach @latest;
|
push @list, buildToHash($_) foreach @latest;
|
||||||
|
@ -142,7 +142,7 @@ sub queue : Chained('api') PathPart('queue') Args(0) {
|
||||||
my $nr = $c->request->params->{nr};
|
my $nr = $c->request->params->{nr};
|
||||||
error($c, "Parameter not defined!") if !defined $nr;
|
error($c, "Parameter not defined!") if !defined $nr;
|
||||||
|
|
||||||
my @builds = $c->model('DB::Builds')->search({finished => 0}, {rows => $nr, order_by => ["busy DESC", "priority DESC", "timestamp"]});
|
my @builds = $c->model('DB::Builds')->search({finished => 0}, {rows => $nr, order_by => ["busy DESC", "priority DESC", "id"]});
|
||||||
|
|
||||||
my @list;
|
my @list;
|
||||||
push @list, buildToHash($_) foreach @builds;
|
push @list, buildToHash($_) foreach @builds;
|
||||||
|
|
|
@ -34,7 +34,8 @@ sub machines : Chained('admin') PathPart('machines') Args(0) {
|
||||||
|
|
||||||
sub clear_queue_non_current : Chained('admin') PathPart('clear-queue-non-current') Args(0) {
|
sub clear_queue_non_current : Chained('admin') PathPart('clear-queue-non-current') Args(0) {
|
||||||
my ($self, $c) = @_;
|
my ($self, $c) = @_;
|
||||||
$c->model('DB::Builds')->search({finished => 0, iscurrent => 0, busy => 0})->update({ finished => 1, buildstatus => 4, timestamp => time});
|
my $time = time();
|
||||||
|
$c->model('DB::Builds')->search({finished => 0, iscurrent => 0, busy => 0})->update({ finished => 1, buildstatus => 4, starttime => $time, stoptime => $time });
|
||||||
$c->res->redirect($c->request->referer // "/admin");
|
$c->res->redirect($c->request->referer // "/admin");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -216,7 +216,7 @@ sub download : Chained('build') PathPart {
|
||||||
notFound($c, "Path $path is a directory.") if -d $path;
|
notFound($c, "Path $path is a directory.") if -d $path;
|
||||||
|
|
||||||
$c->serve_static_file($path);
|
$c->serve_static_file($path);
|
||||||
$c->response->headers->last_modified($c->stash->{build}->timestamp);
|
$c->response->headers->last_modified($c->stash->{build}->stoptime);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -423,9 +423,12 @@ sub cancel : Chained('build') PathPart Args(0) {
|
||||||
# builds as well, but we would have to send a signal or
|
# builds as well, but we would have to send a signal or
|
||||||
# something to the build process.
|
# something to the build process.
|
||||||
|
|
||||||
|
my $time = time();
|
||||||
$build->update(
|
$build->update(
|
||||||
{ finished => 1, busy => 0, timestamp => time
|
{ finished => 1, busy => 0
|
||||||
, iscachedbuild => 0, buildstatus => 4 # = cancelled
|
, iscachedbuild => 0, buildstatus => 4 # = cancelled
|
||||||
|
, starttime => $time
|
||||||
|
, stoptime => $time
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -25,13 +25,13 @@ sub overview : Chained('job') PathPart('') Args(0) {
|
||||||
|
|
||||||
$c->stash->{lastBuilds} =
|
$c->stash->{lastBuilds} =
|
||||||
[ $c->stash->{job}->builds->search({ finished => 1 },
|
[ $c->stash->{job}->builds->search({ finished => 1 },
|
||||||
{ order_by => 'timestamp DESC', rows => 10, columns => [@buildListColumns] }) ];
|
{ order_by => 'id DESC', rows => 10, columns => [@buildListColumns] }) ];
|
||||||
|
|
||||||
$c->stash->{queuedBuilds} = [
|
$c->stash->{queuedBuilds} = [
|
||||||
$c->stash->{job}->builds->search(
|
$c->stash->{job}->builds->search(
|
||||||
{ finished => 0 },
|
{ finished => 0 },
|
||||||
{ join => ['project']
|
{ join => ['project']
|
||||||
, order_by => ["priority DESC", "timestamp"]
|
, order_by => ["priority DESC", "id"]
|
||||||
, '+select' => ['project.enabled']
|
, '+select' => ['project.enabled']
|
||||||
, '+as' => ['enabled']
|
, '+as' => ['enabled']
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,7 +43,7 @@ sub queue :Local {
|
||||||
my ($self, $c) = @_;
|
my ($self, $c) = @_;
|
||||||
$c->stash->{template} = 'queue.tt';
|
$c->stash->{template} = 'queue.tt';
|
||||||
$c->stash->{queue} = [$c->model('DB::Builds')->search(
|
$c->stash->{queue} = [$c->model('DB::Builds')->search(
|
||||||
{finished => 0}, { join => ['project'], order_by => ["priority DESC", "timestamp"], columns => [@buildListColumns], '+select' => ['project.enabled'], '+as' => ['enabled'] })];
|
{finished => 0}, { join => ['project'], order_by => ["priority DESC", "id"], columns => [@buildListColumns], '+select' => ['project.enabled'], '+as' => ['enabled'] })];
|
||||||
$c->stash->{flashMsg} //= $c->flash->{buildMsg};
|
$c->stash->{flashMsg} //= $c->flash->{buildMsg};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1039,7 +1039,6 @@ sub restartBuild {
|
||||||
|
|
||||||
$build->update(
|
$build->update(
|
||||||
{ finished => 0
|
{ finished => 0
|
||||||
, timestamp => time
|
|
||||||
, busy => 0
|
, busy => 0
|
||||||
, locker => ""
|
, locker => ""
|
||||||
, iscachedbuild => 0
|
, iscachedbuild => 0
|
||||||
|
|
|
@ -28,7 +28,7 @@ our @EXPORT = qw(
|
||||||
|
|
||||||
|
|
||||||
# Columns from the Builds table needed to render build lists.
|
# Columns from the Builds table needed to render build lists.
|
||||||
Readonly our @buildListColumns => ('id', 'finished', 'timestamp', 'project', 'jobset', 'job', 'nixname', 'system', 'priority', 'busy', 'buildstatus', 'releasename');
|
Readonly our @buildListColumns => ('id', 'finished', 'timestamp', 'stoptime', 'project', 'jobset', 'job', 'nixname', 'system', 'priority', 'busy', 'buildstatus', 'releasename');
|
||||||
|
|
||||||
|
|
||||||
sub getBuild {
|
sub getBuild {
|
||||||
|
|
|
@ -100,7 +100,7 @@ sub allPrimaryBuilds {
|
||||||
my ($project, $primaryJob) = @_;
|
my ($project, $primaryJob) = @_;
|
||||||
my $allPrimaryBuilds = $project->builds->search(
|
my $allPrimaryBuilds = $project->builds->search(
|
||||||
{ jobset => $primaryJob->get_column('jobset'), job => $primaryJob->get_column('job'), finished => 1 },
|
{ jobset => $primaryJob->get_column('jobset'), job => $primaryJob->get_column('job'), finished => 1 },
|
||||||
{ order_by => "timestamp DESC"
|
{ order_by => "id DESC"
|
||||||
, where => \ attrsToSQL($primaryJob->attrs, "me.id")
|
, where => \ attrsToSQL($primaryJob->attrs, "me.id")
|
||||||
});
|
});
|
||||||
return $allPrimaryBuilds;
|
return $allPrimaryBuilds;
|
||||||
|
@ -153,7 +153,7 @@ sub findLastJobForBuilds {
|
||||||
, job => $job->get_column('job'), finished => 1
|
, job => $job->get_column('job'), finished => 1
|
||||||
},
|
},
|
||||||
{ rows => 1
|
{ rows => 1
|
||||||
, order_by => ["buildstatus", "timestamp"]
|
, order_by => ["buildstatus", "id"]
|
||||||
, where => \ attrsToSQL($job->attrs, "build.id")
|
, where => \ attrsToSQL($job->attrs, "build.id")
|
||||||
})
|
})
|
||||||
unless defined $thisBuild;
|
unless defined $thisBuild;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
project ? " for project $project.name" : "") %]
|
project ? " for project $project.name" : "") %]
|
||||||
[% PROCESS common.tt %]
|
[% PROCESS common.tt %]
|
||||||
|
|
||||||
<p>Showing builds [% (page - 1) * resultsPerPage + 1 %] - [% (page - 1) * resultsPerPage + builds.size %] out of [% total %] in order of descending timestamp.</p>
|
<p>Showing builds [% (page - 1) * resultsPerPage + 1 %] - [% (page - 1) * resultsPerPage + builds.size %] out of [% total %] in order of descending finish time.</p>
|
||||||
|
|
||||||
[% INCLUDE renderBuildList hideProjectName=project hideJobsetName=jobset hideJobName=job %]
|
[% INCLUDE renderBuildList hideProjectName=project hideJobsetName=jobset hideJobName=job %]
|
||||||
[% INCLUDE renderPager %]
|
[% INCLUDE renderPager %]
|
||||||
|
|
|
@ -150,8 +150,8 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>Duration:</th>
|
<th>Duration:</th>
|
||||||
<td>[% actualBuild = build.iscachedbuild ? cachedBuild : build;
|
<td>[% actualBuild = build.iscachedbuild ? cachedBuild : build;
|
||||||
INCLUDE renderDuration duration = actualBuild.stoptime - actualBuild.starttime %]; finished at [% INCLUDE renderDateTime timestamp = actualBuild.stoptime
|
INCLUDE renderDuration duration = actualBuild.stoptime - actualBuild.starttime %];
|
||||||
%]</td>
|
finished at [% INCLUDE renderDateTime timestamp = actualBuild.stoptime %]</td>
|
||||||
</tr>
|
</tr>
|
||||||
[% END %]
|
[% END %]
|
||||||
[% IF log_exists(build.drvpath) %]
|
[% IF log_exists(build.drvpath) %]
|
||||||
|
@ -297,17 +297,17 @@
|
||||||
<td><tt>[% INCLUDE renderOutputs outputs=build.buildoutputs %]</tt></td>
|
<td><tt>[% INCLUDE renderOutputs outputs=build.buildoutputs %]</tt></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Time added:</th>
|
<th>Queued:</th>
|
||||||
<td>[% INCLUDE renderDateTime timestamp = build.timestamp %]</td>
|
<td>[% INCLUDE renderDateTime timestamp = build.timestamp %]</td>
|
||||||
</tr>
|
</tr>
|
||||||
[% IF build.finished && build.buildstatus != 4 %]
|
[% IF build.finished && !build.iscachedbuild %]
|
||||||
<tr>
|
<tr>
|
||||||
<th>Build started:</th>
|
<th>Build started:</th>
|
||||||
<td>[% IF build.starttime %][% INCLUDE renderDateTime timestamp = build.starttime %][% ELSE %]<em>(cached build)</em>[% END %]</td>
|
<td>[% INCLUDE renderDateTime timestamp = build.starttime %]</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Build finished:</th>
|
<th>Build finished:</th>
|
||||||
<td>[% IF build.stoptime %][% INCLUDE renderDateTime timestamp = build.stoptime %][% ELSE %]<em>(cached build)</em>[% END %]</td>
|
<td>[% INCLUDE renderDateTime timestamp = build.stoptime %]</td>
|
||||||
</tr>
|
</tr>
|
||||||
[% END %]
|
[% END %]
|
||||||
[% IF !build.finished %]
|
[% IF !build.finished %]
|
||||||
|
|
|
@ -80,7 +80,7 @@ BLOCK renderBuildListHeader %]
|
||||||
[% END %]
|
[% END %]
|
||||||
<th>Release Name</th>
|
<th>Release Name</th>
|
||||||
<th>System</th>
|
<th>System</th>
|
||||||
<th>Timestamp</th>
|
<th>[% IF showSchedulingInfo %]Queued at[% ELSE %]Finished at[% END %]</th>
|
||||||
[% IF showStatusChange %]
|
[% IF showStatusChange %]
|
||||||
<th class="headerSortUp">Last status change</th>
|
<th class="headerSortUp">Last status change</th>
|
||||||
[% END %]
|
[% END %]
|
||||||
|
@ -113,7 +113,7 @@ BLOCK renderBuildListBody;
|
||||||
[% END %]
|
[% END %]
|
||||||
<td>[% !showSchedulingInfo and build.get_column('releasename') ? build.get_column('releasename') : build.nixname %]</td>
|
<td>[% !showSchedulingInfo and build.get_column('releasename') ? build.get_column('releasename') : build.nixname %]</td>
|
||||||
<td><tt>[% build.system %]</tt></td>
|
<td><tt>[% build.system %]</tt></td>
|
||||||
<td>[% date.format(build.timestamp, '%Y-%m-%d %H:%M:%S') %]</td>
|
<td>[% date.format(showSchedulingInfo ? build.timestamp : build.stoptime, '%Y-%m-%d %H:%M:%S') %]</td>
|
||||||
[% IF showStatusChange %]
|
[% IF showStatusChange %]
|
||||||
<td>
|
<td>
|
||||||
[% IF build.get_column('statusChangeTime') %]
|
[% IF build.get_column('statusChangeTime') %]
|
||||||
|
|
|
@ -54,7 +54,6 @@ sub failDependents {
|
||||||
$d->update(
|
$d->update(
|
||||||
{ finished => 1
|
{ finished => 1
|
||||||
, logfile => ''
|
, logfile => ''
|
||||||
, timestamp => time # !!! Why change the timestamp?
|
|
||||||
, iscachedbuild => 0
|
, iscachedbuild => 0
|
||||||
, buildstatus => $drvPath eq $d->drvpath ? 1 : 2
|
, buildstatus => $drvPath eq $d->drvpath ? 1 : 2
|
||||||
, starttime => $time
|
, starttime => $time
|
||||||
|
@ -307,7 +306,6 @@ sub doBuild {
|
||||||
, busy => 0
|
, busy => 0
|
||||||
, locker => ''
|
, locker => ''
|
||||||
, logfile => ''
|
, logfile => ''
|
||||||
, timestamp => time # !!! Why change the timestamp?
|
|
||||||
, iscachedbuild => $isCachedBuild
|
, iscachedbuild => $isCachedBuild
|
||||||
, buildstatus => $buildStatus
|
, buildstatus => $buildStatus
|
||||||
, starttime => $startTime
|
, starttime => $startTime
|
||||||
|
|
|
@ -100,7 +100,7 @@ sub checkBuilds {
|
||||||
# Select the highest-priority builds to start.
|
# Select the highest-priority builds to start.
|
||||||
my @builds = $extraAllowed == 0 ? () : $db->resultset('Builds')->search(
|
my @builds = $extraAllowed == 0 ? () : $db->resultset('Builds')->search(
|
||||||
{ finished => 0, busy => 0, system => $system->system, enabled => 1 },
|
{ finished => 0, busy => 0, system => $system->system, enabled => 1 },
|
||||||
{ join => ['project'], order_by => ["priority DESC", "timestamp"],
|
{ join => ['project'], order_by => ["priority DESC", "id"],
|
||||||
rows => $extraAllowed });
|
rows => $extraAllowed });
|
||||||
|
|
||||||
if (scalar(@builds) > 0) {
|
if (scalar(@builds) > 0) {
|
||||||
|
|
|
@ -122,7 +122,7 @@ create table Builds (
|
||||||
|
|
||||||
finished integer not null, -- 0 = scheduled, 1 = finished
|
finished integer not null, -- 0 = scheduled, 1 = finished
|
||||||
|
|
||||||
timestamp integer not null, -- time this build was scheduled / finished building
|
timestamp integer not null, -- time this build was added
|
||||||
|
|
||||||
-- Info about the inputs.
|
-- Info about the inputs.
|
||||||
project text not null,
|
project text not null,
|
||||||
|
@ -158,8 +158,8 @@ create table Builds (
|
||||||
|
|
||||||
logfile text, -- if busy, the path of the logfile
|
logfile text, -- if busy, the path of the logfile
|
||||||
|
|
||||||
startTime integer, -- if busy, time we started
|
startTime integer, -- if busy/finished, time we started
|
||||||
stopTime integer,
|
stopTime integer, -- if finished, time we finished
|
||||||
|
|
||||||
-- Information about finished builds.
|
-- Information about finished builds.
|
||||||
isCachedBuild integer, -- boolean
|
isCachedBuild integer, -- boolean
|
||||||
|
|
Loading…
Reference in a new issue