build-remote.pl.in: Add some more trace messages

This allows hydra-build to keep track of the actual build time (so
excluding time required to copy closures around).
This commit is contained in:
Eelco Dolstra 2014-11-12 13:56:01 +01:00
parent bab8d9b52a
commit 5ef2453139
1 changed files with 2 additions and 0 deletions

View File

@ -259,11 +259,13 @@ close UPLOADLOCK;
# Perform the build.
print STDERR "building $drvPath on $hostName\n";
print STDERR "@ build-remote-start $drvPath $hostName\n" if $printBuildTrace;
writeInt(6, $to) or die; # == cmdBuildPaths
writeStrings([$drvPath], $to);
writeInt($maxSilentTime, $to);
writeInt($buildTimeout, $to);
my $res = readInt($from);
print STDERR "@ build-remote-done $drvPath $hostName\n" if $printBuildTrace;
if ($res != 0) {
my $msg = decode("utf-8", readString($from));
print STDERR "error: $msg on $hostName\n";