forked from lix-project/hydra
Add numbered revision id of mercurial as revCount.
This commit is contained in:
parent
8f85fe67d4
commit
0fdcd3176b
|
@ -542,10 +542,10 @@ sub fetchInputHg {
|
||||||
("hg", "pull"));
|
("hg", "pull"));
|
||||||
die "Error pulling latest change mercurial repo at `$uri':\n$stderr" unless $res;
|
die "Error pulling latest change mercurial repo at `$uri':\n$stderr" unless $res;
|
||||||
|
|
||||||
(my $res1, $stdout, $stderr) = captureStdoutStderr(600,("hg", "log", "-r", $id, "--template", "{node|short} {branch}"));
|
(my $res1, $stdout, $stderr) = captureStdoutStderr(600,("hg", "log", "-r", $id, "--template", "{node|short} {rev} {branch}"));
|
||||||
die "Error getting branch and revision of $id from `$uri':\n$stderr" unless $res1;
|
die "Error getting branch and revision of $id from `$uri':\n$stderr" unless $res1;
|
||||||
|
|
||||||
my ($revision, $branch) = split ' ', $stdout;
|
my ($revision, $revCount, $branch) = split ' ', $stdout;
|
||||||
|
|
||||||
my $storePath;
|
my $storePath;
|
||||||
my $sha256;
|
my $sha256;
|
||||||
|
@ -583,6 +583,7 @@ sub fetchInputHg {
|
||||||
, storePath => $storePath
|
, storePath => $storePath
|
||||||
, sha256hash => $sha256
|
, sha256hash => $sha256
|
||||||
, revision => $revision
|
, revision => $revision
|
||||||
|
, revCount => int($revCount)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue