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>
This commit is contained in:
		
							parent
							
								
									05bafc5db5
								
							
						
					
					
						commit
						19d42e0e23
					
				
					 1 changed files with 4 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue