diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-20 19:15:40 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-21 23:17:20 +0100 |
commit | c2d837b943e522d6da350421283e7670c9b88da2 (patch) | |
tree | 2b8584a75859122411423baf6404e8f1f6882b5a /gnu/packages | |
parent | cdba91486a60bbba727d843707322f98f8286124 (diff) | |
download | guix-c2d837b943e522d6da350421283e7670c9b88da2.tar guix-c2d837b943e522d6da350421283e7670c9b88da2.tar.gz |
gnu: orbit2: Disable parallel tests.
* gnu/packages/gnome.scm (orbit2)[arguments]: Add #:parallel-tests?.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4d92f58eb5..5a813f6854 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2468,7 +2468,9 @@ functionality was designed to be as reusable and portable as possible.") "0l3mhpyym9m5iz09fz0rgiqxl2ym6kpkwpsp1xrr4aa80nlh1jam")))) (build-system gnu-build-system) (arguments - `(#:configure-flags + `(;; The "timeout-server" test hangs when run in parallel. + #:parallel-tests? #f + #:configure-flags '(;; We don't need static libraries, plus they don't build reproducibly ;; (non-deterministic ordering of .o files in the archive.) "--disable-static" |