diff options
author | Thiago Jung Bauermann <bauermann@kolabnow.com> | 2021-10-24 12:00:30 -0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-10-25 14:11:11 +0300 |
commit | 8e309227675515f7fe6221bec5686b036e13ecf5 (patch) | |
tree | 388e2ca0634f3b5bcba9e651587f39a9308abcb0 | |
parent | 4e4516599aa2add29b39bf8357c2c503a05902c4 (diff) | |
download | guix-8e309227675515f7fe6221bec5686b036e13ecf5.tar.gz guix-8e309227675515f7fe6221bec5686b036e13ecf5.zip |
gnu: mariadb: Don’t run tests in parallel on ppc64le targets.
* gnu/packages/databases.scm (mariadb)[arguments]: Set ‘#:parallel-tests?’
for powerpc64le machines.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/databases.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 1f193962db..8701cc3bfe 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -831,6 +831,10 @@ Language.") "/share/mysql/support-files") "-DINSTALL_MYSQLSHAREDIR=share/mysql" "-DINSTALL_SHAREDIR=share") + ;; The testsuite has spurious failures (mostly timeouts) if run in + ;; parallel on Guix CI’s ppc64le VM. It appears that the I/O load is + ;; too high for it to handle. + #:parallel-tests? ,(not (target-ppc64le?)) #:phases (modify-phases %standard-phases (add-after 'unpack 'adjust-output-references |