summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2025-08-22 00:08:48 +0300
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-21 09:42:14 +0100
commit80c5eac6c4bc6226cf2cfbdc3c9bdcc01de2e0d2 (patch)
tree456027c6924215cd6e9b4e2490b59782f0b92213 /gnu
parent61f32bfa7f4f403203fbbb193e71aa4e19a16236 (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 0c53302d4ed..31110556d57 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -494,7 +494,7 @@ in the style of communicating sequential processes (@dfn{CSP}).")
494 (guix build utils)) 494 (guix build utils))
495 ;; TODO: Disable the test(s) in misc/cgo/test/cgo_test.go 495 ;; TODO: Disable the test(s) in misc/cgo/test/cgo_test.go
496 ;; that cause segfaults in the test suite. 496 ;; that cause segfaults in the test suite.
497 #:tests? ,(not (target-riscv64?)) 497 #:tests? ,(not (or (target-arm32?) (target-riscv64?)))
498 #:phases 498 #:phases
499 (modify-phases %standard-phases 499 (modify-phases %standard-phases
500 (replace 'configure 500 (replace 'configure