This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch next-master
in repository guix.
The following commit(s) were added to refs/heads/next-master by this push:
new 4c64a2d9f4 gnu: mariadb: Fix max nproc in tests.
4c64a2d9f4 is described below
commit 4c64a2d9f4cdfc8af874af2fc9f68f25ca269092
Author: Cayetano Santos <[email protected]>
AuthorDate: Fri Jan 16 22:48:09 2026 +0100
gnu: mariadb: Fix max nproc in tests.
* gnu/packages/databases.scm (mariadb)[arguments]: Adjust ’check phase.
Fixes guix/guix#5680
Change-Id: I602def0aca4755ae3d2c56ebf9c3bc2a9cf9c28e
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/databases.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 30e510c1bb..52451fc44f 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1326,8 +1326,9 @@ Language.")
"--testcase-timeout=40"
"--suite-timeout=600"
"--parallel" (number->string (if parallel-tests?
- (parallel-job-count)
- 1))
+ ;; See
guix/guix#5680.
+ (min 64
(parallel-job-count))
+ 1))
;; Skip the replication tests: they are very I/O
;; intensive and frequently causes indeterministic
;; failures even on powerful hardware.