mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: gsl: Disable tests on aarch64-linux.
* gnu/packages/maths.scm (gsl)[arguments]: Do not run the test suite on aarch64-linux. [home-page]: Use https.
This commit is contained in:
parent
c17383f400
commit
6f76606984
1 changed files with 8 additions and 2 deletions
|
@ -270,8 +270,14 @@ (define-public gsl
|
||||||
(patches (search-patches "gsl-test-i686.patch"))))
|
(patches (search-patches "gsl-test-i686.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f))
|
`(#:parallel-tests? #f
|
||||||
(home-page "http://www.gnu.org/software/gsl/")
|
;; Currently there are numerous tests that fail on "exotic"
|
||||||
|
;; architectures such as aarch64 and ppc64le.
|
||||||
|
,@(if (string-prefix? "aarch64-linux"
|
||||||
|
(or (%current-target-system) (%current-system)))
|
||||||
|
'(#:tests? #f)
|
||||||
|
'())))
|
||||||
|
(home-page "https://www.gnu.org/software/gsl/")
|
||||||
(synopsis "Numerical library for C and C++")
|
(synopsis "Numerical library for C and C++")
|
||||||
(description
|
(description
|
||||||
"The GNU Scientific Library is a library for numerical analysis in C
|
"The GNU Scientific Library is a library for numerical analysis in C
|
||||||
|
|
Loading…
Reference in a new issue