mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: julia-genericlinearalgebra: Skip some tests on aarch64-linux.
* gnu/packages/julia-xyz.scm (julia-genericlinearalgebra)[arguments]: When building for aarch64-linux add a phase to skip two tests. Change-Id: I9aedee8fc0a4aec77181a3b3c6ab25412882f077
This commit is contained in:
parent
ca3803d6e2
commit
d4869b7e43
1 changed files with 13 additions and 0 deletions
|
@ -2519,6 +2519,19 @@ (define-public julia-genericlinearalgebra
|
|||
(sha256
|
||||
(base32 "16k1r02w5qivvr99n5a9impbnnzygpj705irf5ypy208np91xyyd"))))
|
||||
(build-system julia-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
(if (target-aarch64?)
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'skip-some-tests
|
||||
(lambda _
|
||||
(substitute* "test/lapack.jl"
|
||||
(("@testset.*stedc.*" all)
|
||||
(string-append all "return\n"))
|
||||
(("@testset.*stemr.*" all)
|
||||
(string-append all "return\n"))))))
|
||||
#~%standard-phases)))
|
||||
(native-inputs
|
||||
(list julia-quaternions))
|
||||
(home-page "https://github.com/JuliaLinearAlgebra/GenericLinearAlgebra.jl")
|
||||
|
|
Loading…
Reference in a new issue