me
/
guix
Archived
1
0
Fork 0

gnu: julia: Skip tests on aarch64-linux.

* gnu/packages/julia.scm (julia)[arguments]: Skip tests when building
for aarch64-linux.
master
Efraim Flashner 2021-07-27 16:37:05 +03:00
parent cc85829fb9
commit 6886c4960d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 0 deletions

View File

@ -291,6 +291,10 @@ libraries. It is also a bit like @code{ldd} and @code{otool -L}.")
(guix build gnu-build-system) (guix build gnu-build-system)
(guix build utils)) (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. ;; Do not strip binaries to keep support for full backtraces.
;; See https://github.com/JuliaLang/julia/issues/17831 ;; See https://github.com/JuliaLang/julia/issues/17831
#:strip-binaries? #f #:strip-binaries? #f