mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: julia-interpolations: Don't ask to run tests when cross-compiling.
* gnu/packages/julia-xyz.scm (julia-interpolations)[arguments]{#:tests?}: When cross-compiling, set to #false. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
55e88a2759
commit
5192bead32
1 changed files with 2 additions and 1 deletions
|
@ -2939,7 +2939,8 @@ (define-public julia-interpolations
|
|||
;; Got exception outside of a @test
|
||||
;; OverflowError: 96908232 * 106943408 overflowed for type Int32
|
||||
;; Disable as stopgap.
|
||||
#:tests? (not (target-x86-32?))))
|
||||
#:tests? (not (or (%current-target-system)
|
||||
(target-x86-32?)))))
|
||||
(propagated-inputs
|
||||
(list julia-axisalgorithms
|
||||
julia-offsetarrays
|
||||
|
|
Loading…
Reference in a new issue