[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch staging updated: build-system/haskell: Disable parallel builds.
From: |
guix-commits |
Subject: |
branch staging updated: build-system/haskell: Disable parallel builds. |
Date: |
Sun, 18 Oct 2020 18:11:03 -0400 |
This is an automated email from the git hooks/post-receive script.
mbakke pushed a commit to branch staging
in repository guix.
The following commit(s) were added to refs/heads/staging by this push:
new 19d42e0 build-system/haskell: Disable parallel builds.
19d42e0 is described below
commit 19d42e0e23a7f90ac2dcc1c279bd23a967ff0314
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Sun Oct 18 00:10:06 2020 +0200
build-system/haskell: Disable parallel builds.
Fixes <https://bugs.gnu.org/43843>.
* guix/build-system/haskell.scm (haskell-build): Turn off PARALLEL-BUILD? by
default.
Signed-off-by: Marius Bakke <marius@gnu.org>
---
guix/build-system/haskell.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/guix/build-system/haskell.scm b/guix/build-system/haskell.scm
index 8304e3b..18a584f 100644
--- a/guix/build-system/haskell.scm
+++ b/guix/build-system/haskell.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
;;; Copyright © 2020 Timothy Sample <samplet@ngyro.com>
+;;; Copyright © 2020 Simon Tournier <zimon.toutoune@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -121,7 +122,9 @@ version REVISION."
(haddock-flags ''())
(tests? #t)
(test-target "test")
- (parallel-build? #t)
+ ;; FIXME: Parallel builds lead to indeterministic
+ ;; results, see <http://issues.guix.gnu.org/43843#3>.
+ (parallel-build? #f)
(configure-flags ''())
(extra-directories ''())
(phases '(@ (guix build haskell-build-system)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch staging updated: build-system/haskell: Disable parallel builds.,
guix-commits <=