gnu: go-github-com-go-git-go-git-fixtures: Disable tests on non 64bit architectures.

* gnu/packages/golang.scm (go-github-com-go-git-go-git-fixtures)
[arguments]: <#:tests?>: Preserve test only on 64 bit architectures.

Change-Id: Iab92ef9541d3cc2195eda784e0b9cf2e7c3597c0
This commit is contained in:
Sharlatan Hellseher 2024-09-03 10:15:28 +01:00
parent 1787dfb4b5
commit 386a1c77af
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6447,10 +6447,13 @@ (define-public go-github-com-go-git-go-git-fixtures
"002yb1s2mxq2xijkl39ip1iyc3l52k23ikyi9ijfl4bgqxy79ljg"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/go-git/go-git-fixtures/v4"
#:phases
(modify-phases %standard-phases
(delete 'reset-gzip-timestamps))))
(list
;; XXX: panic: runtime error: makeslice: cap out of range
#:tests? (target-64bit?)
#:import-path "github.com/go-git/go-git-fixtures/v4"
#:phases
#~(modify-phases %standard-phases
(delete 'reset-gzip-timestamps))))
(native-inputs
(list go-github-com-alcortesm-tgz go-github-com-go-git-go-billy
go-golang-org-x-sys go-gopkg-in-check-v1))