diff options
author | nebuli <nebu@kipple> | 2014-11-22 19:16:51 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-23 21:48:47 +0100 |
commit | 8b47758f02415a3563e189f8e90c4fe1b8058e44 (patch) | |
tree | ef5efc39e509b7b526cc4c49f8f75daa1e7c81f8 /guix/store.scm | |
parent | 7fec52b78b1b5f762a82ef900e0b871da40e7f92 (diff) | |
download | gnu-guix-8b47758f02415a3563e189f8e90c4fe1b8058e44.tar gnu-guix-8b47758f02415a3563e189f8e90c4fe1b8058e44.tar.gz |
store: default to serial "scheduler"
* guix/store.scm (set-build-options): exchange default argument values
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/store.scm')
-rw-r--r-- | guix/store.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/store.scm b/guix/store.scm index bc4c641583..571cc060d3 100644 --- a/guix/store.scm +++ b/guix/store.scm @@ -435,14 +435,14 @@ encoding conversion errors." (define* (set-build-options server #:key keep-failed? keep-going? fallback? (verbosity 0) - (max-build-jobs (current-processor-count)) + (max-build-jobs 1) timeout (max-silent-time 3600) (use-build-hook? #t) (build-verbosity 0) (log-type 0) (print-build-trace #t) - (build-cores 1) + (build-cores (current-processor-count)) (use-substitutes? #t) (binary-caches '())) ; client "untrusted" cache URLs ;; Must be called after `open-connection'. |