diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-17 14:49:51 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-17 14:51:37 +0200 |
commit | b56e01cb38a39b6a35122bedce23566cf701ba27 (patch) | |
tree | 82c6d55af41e9efa076fef2faa1370579830912d /gnu | |
parent | 716470cda447e8cc3e73b09a8dfdcf1032aa37f2 (diff) | |
download | guix-b56e01cb38a39b6a35122bedce23566cf701ba27.tar guix-b56e01cb38a39b6a35122bedce23566cf701ba27.tar.gz |
gnu: lightning: Fix build.
* gnu/packages/assembly.scm (lightning)[arguments]: Don't run tests in
parallel.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/assembly.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm index 2167eb2dbb..e5cdce0bd4 100644 --- a/gnu/packages/assembly.scm +++ b/gnu/packages/assembly.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2020 Christine Lemmer-Webber <cwebber@dustycloud.org> ;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com> ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -140,6 +141,9 @@ debugging information in STABS, DWARF 2, and CodeView 8 formats.") "1jgxbq2cm51dzi3zhz38mmgwdcgs328mfl8iviw8dxn6dn36p1gd")))) (build-system gnu-build-system) (native-inputs `(("zlib" ,zlib))) + (arguments + ;; Some tests fail when run in parallel. + `(#:parallel-tests? #f)) (synopsis "Library for generating assembly code at runtime") (description "GNU Lightning is a library that generates assembly language code at |