From mboxrd@z Thu Jan 1 00:00:00 1970 From: Deck Pickard Subject: [PATCH 1/4] store: default to serial "scheduler" Date: Sat, 22 Nov 2014 23:34:52 +0100 Message-ID: References: <4264108163499671162@unknownmsgid> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=f46d043894e58988e605087a2b18 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46785) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsJGZ-0006iG-6Y for guix-devel@gnu.org; Sat, 22 Nov 2014 17:34:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XsJGX-0003W6-Pq for guix-devel@gnu.org; Sat, 22 Nov 2014 17:34:55 -0500 Received: from mail-wg0-x22a.google.com ([2a00:1450:400c:c00::22a]:58883) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsJGX-0003VJ-JS for guix-devel@gnu.org; Sat, 22 Nov 2014 17:34:53 -0500 Received: by mail-wg0-f42.google.com with SMTP id z12so9448754wgg.15 for ; Sat, 22 Nov 2014 14:34:53 -0800 (PST) In-Reply-To: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --f46d043894e58988e605087a2b18 Content-Type: text/plain; charset=UTF-8 * guix/store.scm (set-build-options): exchange default argument values --- guix/store.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/store.scm b/guix/store.scm index bc4c641..571cc06 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'. -- 2.1.2 --f46d043894e58988e605087a2b18 Content-Type: text/html; charset=UTF-8

* guix/store.scm (set-build-options): exchange default argument values
---
guix/store.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/store.scm b/guix/store.scm
index bc4c641..571cc06 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'.
--
2.1.2

--f46d043894e58988e605087a2b18--