diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-02-13 16:31:34 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-02-14 13:59:05 +0200 |
commit | 024a8b39957203f3a3cb93c87746c35635b81e57 (patch) | |
tree | 6ae3472e15a8ac743360d0d6271a95253336256b /gnu/packages/golang.scm | |
parent | 455ecb5cbe3201e4c1591ed12650cad6ba34893a (diff) | |
download | guix-024a8b39957203f3a3cb93c87746c35635b81e57.tar guix-024a8b39957203f3a3cb93c87746c35635b81e57.tar.gz |
gnu: go-1.17: Skip tests on riscv64-linux.
* gnu/packages/golang.scm (go-1.17)[arguments]: When building for
riscv64-linux skip the test suite.
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 55c489a5d7..07e4c9ed22 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -651,7 +651,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-aarch64?)) + #:tests? ,(not (or (target-aarch64?) (target-riscv64?))) #:phases (modify-phases %standard-phases (replace 'configure |