From 842e491e2e798298246f3449b39d1e3f36fe7d1c Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 27 Nov 2023 10:18:46 +0200 Subject: 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 --- gnu/packages/golang.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 7a9e081b4c..5e9211026b 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -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") -- cgit v1.2.3