gnu: julia: Also skip tests when cross-compiling.

* gnu/packages/julia.scm (julia)[arguments]: Don't run the test suite
when cross-compiling.
This commit is contained in:
Efraim Flashner 2022-12-08 10:17:05 +02:00
parent 82babf242e
commit d521c2dcba
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -164,7 +164,8 @@ (define-public julia
;; 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?))
#:tests? ,(not (or (%current-target-system)
(target-aarch64?)))
;; Do not strip binaries to keep support for full backtraces.
;; See https://github.com/JuliaLang/julia/issues/17831