aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2016-12-07 13:43:40 +0100
committerEelco Dolstra <edolstra@gmail.com>2016-12-07 13:43:40 +0100
commitcea4e2c618fcf0111da2dcacc023d2a7a32ee15b (patch)
tree8131569cb5c1646a4751c684130962de0bd770e2
parent8bdf83f936adae6f2c907a6d2541e80d4120f051 (diff)
Expose enforce-determinism and the result to Hydra
-rw-r--r--src/nix-store/nix-store.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index 77ad517a7..6ab62f53a 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -840,8 +840,10 @@ static void opServe(Strings opFlags, Strings opArgs)
settings.buildTimeout = readInt(in);
if (GET_PROTOCOL_MINOR(clientVersion) >= 2)
settings.maxLogSize = readInt(in);
- if (GET_PROTOCOL_MINOR(clientVersion) >= 3)
+ if (GET_PROTOCOL_MINOR(clientVersion) >= 3) {
settings.set("build-repeat", std::to_string(readInt(in)));
+ settings.set("enforce-determinism", readInt(in) != 0 ? "true" : "false");
+ }
settings.printRepeatedBuilds = false;
};
@@ -958,6 +960,9 @@ static void opServe(Strings opFlags, Strings opArgs)
out << status.status << status.errorMsg;
+ if (GET_PROTOCOL_MINOR(clientVersion) >= 3)
+ out << status.timesBuilt << status.isNonDeterministic;
+
break;
}