gnu: mariadb: Only enable parallel tests on x86_64-linux.

* gnu/packages/databases.scm (mariadb)[arguments]: Only enable parallel
tests when building on x86_64-linux.
This commit is contained in:
Efraim Flashner 2021-10-26 08:37:17 +03:00
parent cab17c1c37
commit ffcc5395b7
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -831,10 +831,10 @@ (define-public mariadb
"/share/mysql/support-files")
"-DINSTALL_MYSQLSHAREDIR=share/mysql"
"-DINSTALL_SHAREDIR=share")
;; The testsuite has spurious failures (mostly timeouts) if run in
;; parallel on Guix CIs ppc64le VM. It appears that the I/O load is
;; too high for it to handle.
#:parallel-tests? ,(not (target-ppc64le?))
;; The test suite has spurious failures (mostly timeouts) if run in
;; parallel on various machines. Only enable parallel tests on
;; architectures which are likely to not have this issue.
#:parallel-tests? ,(target-x86-64?)
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'adjust-output-references