guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 43fc5cacef70536ed8b1c4b31418fc400e80edfb
Author: Efraim Flashner <[email protected]>
AuthorDate: Fri Aug 22 00:08:48 2025 +0300
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 <[email protected]>
---
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 0c53302d4e..31110556d5 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