diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-29 14:28:38 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:35 +0000 |
commit | 97452b52f2139c929fff1a774ca0a29c7c85b2f2 (patch) | |
tree | 0d0b9752696ebc5c273eeb2de655a85607c3c68c /gnu/packages/golang-check.scm | |
parent | a49dc18fd05b21103c5faa3f0c09b466ef64cc2b (diff) |
gnu: go-github-com-stretchr-testify: Update to 1.10.0.
Fix build on non x86_64 architectures by disabling tests.
* gnu/packages/golang-check.scm: Add "guix utils" module.
(go-github-com-stretchr-testify): Update to 1.10.0.
[arguments] <tests?>: Limit them to x86_64 architecture.
Change-Id: Ib157a3824df37e3bc9293ef9278a86573ababef1
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index d037f14d4f..611cd501ba 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -46,6 +46,7 @@ #:use-module (guix build-system go) #:use-module (guix gexp) #:use-module (guix git-download) + #:use-module (guix utils) #:use-module (gnu packages) #:use-module (gnu packages golang) #:use-module (gnu packages golang-build) @@ -1285,7 +1286,7 @@ current goroutine's ID.") (define-public go-github-com-stretchr-testify (package (name "go-github-com-stretchr-testify") - (version "1.9.0") + (version "1.10.0") (source (origin (method git-fetch) @@ -1294,11 +1295,14 @@ current goroutine's ID.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 - "12cnhk96h8b3ddlb7jfvwwavzc0j1c2iva92pszl9rv6r571ckzg")))) + (base32 "0g1bdpqih38a7dl1malahz5x4ag01adk61gx47jg2534cqzvid05")))) (build-system go-build-system) (arguments - '(#:import-path "github.com/stretchr/testify")) + (list + ;; XXX: Tests are shaky on non x86_64 architectures, check if some may + ;; be enabled. + #:tests? (target-x86-64?) + #:import-path "github.com/stretchr/testify")) (propagated-inputs (list go-github-com-davecgh-go-spew go-github-com-pmezard-go-difflib @@ -1306,8 +1310,9 @@ current goroutine's ID.") go-gopkg-in-yaml-v3)) (home-page "https://github.com/stretchr/testify") (synopsis "Go helper library for tests and invariant checking") - (description "This package provide many tools for testifying that your -code will behave as you intend. + (description + "This package provide many tools for testifying that your code will +behave as you intend. Features include: @itemize |