Change evaluator heap size
Eelco Dolstra committed
Jul 18, 2019 at 16:58 UTC
507195964d2b620b730dd943d3b04455e81b4be9
1 file changed
+2
-2
delft/hydra.nix
+2
-2
@@ -60,8 +60,8 @@ in
60
61
log_prefix = https://nix-cache.s3.amazonaws.com/
62
63
- evaluator_initial_heap_size = 11000000000
64
- evaluator_max_heap_size = 12000000000
63
+ evaluator_initial_heap_size = ${let gb = 11; in toString (gb * 1000 * 1000 * 1000)}
64
+ evaluator_max_heap_size = ${let gb = 12; in toString (gb * 1000 * 1000 * 1000)}
65
66
max_concurrent_evals = 1
67
'';