Keep track of the time we spend copying to/from build machines

This commit is contained in:
Eelco Dolstra
2016-02-17 10:28:42 +01:00
parent e46acbf05b
commit d7a123fcd4
7 changed files with 41 additions and 11 deletions

View File

@ -273,6 +273,9 @@ create table BuildSteps (
propagatedFrom integer,
-- Time in milliseconds spend copying stuff from/to build machines.
overhead integer,
primary key (build, stepnr),
foreign key (build) references Builds(id) on delete cascade,
foreign key (propagatedFrom) references Builds(id) on delete cascade