guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

12/19: gnu: julia: Skip tests on aarch64-linux.


From: guix-commits
Subject: 12/19: gnu: julia: Skip tests on aarch64-linux.
Date: Wed, 28 Jul 2021 09:08:22 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 6886c4960dd4d8913113ae0330cd8b2d27947a57
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jul 27 16:37:05 2021 +0300

    gnu: julia: Skip tests on aarch64-linux.
    
    * gnu/packages/julia.scm (julia)[arguments]: Skip tests when building
    for aarch64-linux.
---
 gnu/packages/julia.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm
index b3d8992..6045c16 100644
--- a/gnu/packages/julia.scm
+++ b/gnu/packages/julia.scm
@@ -291,6 +291,10 @@ libraries.  It is also a bit like @code{ldd} and 
@code{otool -L}.")
                   (guix build gnu-build-system)
                   (guix build utils))
 
+       ;; The test suite takes many times longer than building and
+       ;; can easily fail on smaller machines when they run out of memory.
+       #:tests? ,(not (target-aarch64?))
+
        ;; Do not strip binaries to keep support for full backtraces.
        ;; See https://github.com/JuliaLang/julia/issues/17831
        #:strip-binaries? #f



reply via email to

[Prev in Thread] Current Thread [Next in Thread]