guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 03/03: gnu: go-gopkg-in-yaml-v3: Skip tests on powerpc-linux.
Date: Mon, 27 Nov 2023 06:37:53 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 842e491e2e798298246f3449b39d1e3f36fe7d1c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Nov 27 10:18:46 2023 +0200

    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(-)

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 @@ values.")
        (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";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]