mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-rcrowley-go-metrics: Skip tests on aarch64-linux.
* gnu/packages/syncthing.scm (go-github-com-rcrowley-go-metrics) [arguments]: Skip tests when building on or for aarch64-linux.
This commit is contained in:
parent
362ae4313e
commit
87e1a1979b
1 changed files with 5 additions and 1 deletions
|
@ -531,7 +531,11 @@ higher-level API for doing so.")
|
||||||
"1hfxffnpaw49pr3wrkbzq3pnv3nyzsvk5dxndv0yz70xlrbg8a04"))))
|
"1hfxffnpaw49pr3wrkbzq3pnv3nyzsvk5dxndv0yz70xlrbg8a04"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "github.com/rcrowley/go-metrics"))
|
;; Arbitrary precision tests are known to be broken on aarch64, ppc64le
|
||||||
|
;; and s390x. See: https://github.com/rcrowley/go-metrics/issues/249
|
||||||
|
`(#:tests? ,(not (string-prefix? "aarch64" (or (%current-target-system)
|
||||||
|
(%current-system))))
|
||||||
|
#:import-path "github.com/rcrowley/go-metrics"))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("go-github-com-stathat-go" ,go-github-com-stathat-go)))
|
`(("go-github-com-stathat-go" ,go-github-com-stathat-go)))
|
||||||
(synopsis "Go port of Coda Hale's Metrics library")
|
(synopsis "Go port of Coda Hale's Metrics library")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue