We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f608166 commit 9989e6cCopy full SHA for 9989e6c
1 file changed
src/hydra-queue-runner/build-remote.cc
@@ -299,6 +299,14 @@ void State::buildRemote(ref<Store> destStore,
299
if (GET_PROTOCOL_MINOR(remoteVersion) >= 3) {
300
result.timesBuilt = readInt(from);
301
result.isNonDeterministic = readInt(from);
302
+ auto start = readInt(from);
303
+ auto stop = readInt(from);
304
+ if (start && start) {
305
+ /* Note: this represents the duration of a single
306
+ round, rather than all rounds. */
307
+ result.startTime = start;
308
+ result.stopTime = stop;
309
+ }
310
}
311
switch ((BuildResult::Status) res) {
312
case BuildResult::Built:
0 commit comments