From 8e309227675515f7fe6221bec5686b036e13ecf5 Mon Sep 17 00:00:00 2001 From: Thiago Jung Bauermann Date: Sun, 24 Oct 2021 12:00:30 -0300 Subject: gnu: mariadb: Don’t run tests in parallel on ppc64le targets. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/databases.scm (mariadb)[arguments]: Set ‘#:parallel-tests?’ for powerpc64le machines. Signed-off-by: Efraim Flashner --- gnu/packages/databases.scm | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gnu/packages') 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 -- cgit v1.2.3