aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-08-27 14:02:27 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-08-27 14:02:27 +0100
commit3dfb6df26fa673fe674cf331941506293008ca42 (patch)
tree88d024bc8271549baacd497ad9786b74c8e689d5 /gnu/packages
parentb09538f682d38f2b586cebc5d3b780a9b5673f1f (diff)
downloadguix-3dfb6df26fa673fe674cf331941506293008ca42.tar.gz
guix-3dfb6df26fa673fe674cf331941506293008ca42.zip
gnu: go-github-com-fxamacker-cbor-v2: Disable tests on non 64bit architecture.
* gnu/packages/golang-web.scm (go-github-com-fxamacker-cbor-v2): Disable tests on non 64bit architecture. Change-Id: I41e207a77989d6b4faf883c14327e48fc303a027
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/golang-xyz.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 8217f4f5b0..796341a66b 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2485,6 +2485,10 @@ quoting, commenting, and escaping.")
(build-system go-build-system)
(arguments
(list
+ ;; XXX: Check if the most of the tests may be enabled:
+ ;; src/github.com/fxamacker/cbor/v2/decode_test.go:328:9: cannot convert
+ ;; 1000000000000 (untyped int constant) to type uint
+ #:tests? (target-64bit?)
#:import-path "github.com/fxamacker/cbor/v2"))
(propagated-inputs
(list go-github-com-x448-float16))