store: default to serial "scheduler"
* guix/store.scm (set-build-options): exchange default argument values Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
7fec52b78b
commit
8b47758f02
|
@ -435,14 +435,14 @@ encoding conversion errors."
|
||||||
(define* (set-build-options server
|
(define* (set-build-options server
|
||||||
#:key keep-failed? keep-going? fallback?
|
#:key keep-failed? keep-going? fallback?
|
||||||
(verbosity 0)
|
(verbosity 0)
|
||||||
(max-build-jobs (current-processor-count))
|
(max-build-jobs 1)
|
||||||
timeout
|
timeout
|
||||||
(max-silent-time 3600)
|
(max-silent-time 3600)
|
||||||
(use-build-hook? #t)
|
(use-build-hook? #t)
|
||||||
(build-verbosity 0)
|
(build-verbosity 0)
|
||||||
(log-type 0)
|
(log-type 0)
|
||||||
(print-build-trace #t)
|
(print-build-trace #t)
|
||||||
(build-cores 1)
|
(build-cores (current-processor-count))
|
||||||
(use-substitutes? #t)
|
(use-substitutes? #t)
|
||||||
(binary-caches '())) ; client "untrusted" cache URLs
|
(binary-caches '())) ; client "untrusted" cache URLs
|
||||||
;; Must be called after `open-connection'.
|
;; Must be called after `open-connection'.
|
||||||
|
|
Reference in New Issue