mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: go-github-com-prometheus-client-golang: Disable tests on non 64bit architecture.
As seen in CI <https://ci.guix.gnu.org/build/5483940/log/raw>. * gnu/packages/gnu/packages/prometheus.scm (go-github-com-prometheus-client-golang): Disable tests on non 64bit architecture. Change-Id: Ic2f23e1aec24e72056741d4f6fe1fa479bf5e60e
This commit is contained in:
parent
3dfb6df26f
commit
1166035acb
1 changed files with 4 additions and 0 deletions
|
@ -142,6 +142,10 @@ (define-public go-github-com-prometheus-client-golang
|
|||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
;; XXX: Check if the most of the tests may be enabled:
|
||||
;; api/prometheus/v1/api_test.go:1063:23: cannot use 1634644800304
|
||||
;; (untyped int constant) as int value in map literal (overflows)
|
||||
#:tests? (target-64bit?)
|
||||
#:import-path "github.com/prometheus/client_golang"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue