* for git inputs, check latest revision of branch (defaults to master for now), if there is change, only use input if last checkout was > hour ago.
This commit is contained in:
@ -294,11 +294,13 @@ create table CachedSubversionInputs (
|
||||
|
||||
create table CachedGitInputs (
|
||||
uri text not null,
|
||||
branch text not null,
|
||||
revision text not null,
|
||||
timestamp integer not null, -- when we first saw this hash
|
||||
lastSeen integer not null, -- when we last saw this hash
|
||||
sha256hash text not null,
|
||||
storePath text not null,
|
||||
primary key (uri, sha256hash)
|
||||
primary key (uri, branch, revision)
|
||||
);
|
||||
|
||||
create table CachedCVSInputs (
|
||||
|
Reference in New Issue
Block a user