mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
store: default to serial "scheduler"
* guix/store.scm (set-build-options): exchange default argument values Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7fec52b78b
commit
8b47758f02
1 changed files with 2 additions and 2 deletions
|
@ -435,14 +435,14 @@ (define %stderr-error #x63787470) ; "cxtp", error reporting
|
|||
(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'.
|
||||
|
|
Loading…
Reference in a new issue