diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-12-28 15:17:09 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-12-28 15:17:09 +0200 |
commit | 71886a4eaac6578e5b505caf8d7571bf19988bd8 (patch) | |
tree | 891e09eb451bcf0b7df66702d5b237f7ce618d75 | |
parent | e48b9d57129a9e7e680f5988b53ac87ebf946a39 (diff) | |
download | guix-71886a4eaac6578e5b505caf8d7571bf19988bd8.tar guix-71886a4eaac6578e5b505caf8d7571bf19988bd8.tar.gz |
gnu: go-1.17: Disable tests on aarch64-linux.
* gnu/packages/golang.scm (go-1.17)[arguments]: Disable tests when
building for aarch64-linux.
-rw-r--r-- | gnu/packages/golang.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 50d03516cf..648dfb1951 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -636,6 +636,9 @@ in the style of communicating sequential processes (@dfn{CSP}).") `(#:modules ((ice-9 match) (guix build gnu-build-system) (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?)) #:phases (modify-phases %standard-phases (replace 'configure |