diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-01-16 22:48:09 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:24:54 +0100 |
| commit | 817bdc3f611810b76696a82dc464eceb767f2e56 (patch) | |
| tree | 451102dee106880a27e6674a195885f3e52db35a | |
| parent | 2ba11b61288e46baf1a7864720223444bc30014b (diff) | |
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 <andreas@enge.fr>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
| -rw-r--r-- | gnu/packages/databases.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 30e510c1bb8..52451fc44f3 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. |
