gnu: julia: Skip tests on aarch64-linux.
* gnu/packages/julia.scm (julia)[arguments]: Skip tests when building for aarch64-linux.master
parent
cc85829fb9
commit
6886c4960d
|
@ -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
|
||||||
|
|
Reference in New Issue