From 80c5eac6c4bc6226cf2cfbdc3c9bdcc01de2e0d2 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 22 Aug 2025 00:08:48 +0300 Subject: [PATCH] gnu: go-1.17: Disable tests on armhf-linux. * gnu/packages/golang.scm (go-1.17)[arguments]: Disable tests when building for armhf-linux. Change-Id: I8654c1966daaa19602d876618d5ff9e384b12fc8 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 0c53302d4ed906af6401f72ba85353907f5de267..31110556d574a295960f8dd9fa6edd1dac816abe 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -494,7 +494,7 @@ in the style of communicating sequential processes (@dfn{CSP}).") (guix build utils)) ;; TODO: Disable the test(s) in misc/cgo/test/cgo_test.go ;; that cause segfaults in the test suite. - #:tests? ,(not (target-riscv64?)) + #:tests? ,(not (or (target-arm32?) (target-riscv64?))) #:phases (modify-phases %standard-phases (replace 'configure