diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-07-27 16:37:05 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-07-28 16:05:32 +0300 |
commit | 6886c4960dd4d8913113ae0330cd8b2d27947a57 (patch) | |
tree | cde0775b725496d33aa616dfc8dafdf7f1c9cb0f /gnu | |
parent | cc85829fb9e48a227250e8b33b9c30332a3c5d27 (diff) |
gnu: julia: Skip tests on aarch64-linux.
* gnu/packages/julia.scm (julia)[arguments]: Skip tests when building
for aarch64-linux.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm index b3d8992b54..6045c16b8f 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 |