gnu: go-gopkg-in-yaml-v3: Skip tests on powerpc-linux.

* gnu/packages/golang.scm (go-gopkg-in-yaml-v3)[arguments]: Skip the
tests when building for powerpc-linux.

Change-Id: I68e3dfa274186ef8f20f85614ba941ea878d6b86
This commit is contained in:
Efraim Flashner 2023-11-27 10:18:46 +02:00
parent 0dffb145f0
commit 842e491e2e
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5617,7 +5617,8 @@ (define-public go-gopkg-in-yaml-v3
(patches (search-patches "go-gopkg-in-yaml-v3-32bit.patch"))))
(build-system go-build-system)
(arguments
'(#:import-path "gopkg.in/yaml.v3"))
`(#:tests? ,(not (target-ppc32?)) ; Test killed with quit: ran too long (11m0s).
#:import-path "gopkg.in/yaml.v3"))
(native-inputs
(list go-gopkg-in-check-v1))
(home-page "https://gopkg.in/yaml.v3")