sharlatan pushed a commit to branch go-team
in repository guix.
commit d3a6a3dc181edd7b359a3636814a740914010c53
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Mar 9 23:20:42 2025 +0000
gnu: go-github-com-syncthing-notify: Run tests in a single thread.
* gnu/packages/syncthing.scm (go-github-com-syncthing-notify)
[arguments] <parallel-tests?>: Run in a single thread to resolve build
in CI.
Change-Id: Ieb93f7e9f59c090541be75a4cfb23f78bcb26040
---
gnu/packages/syncthing.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index 0322c612e3..5dd3ceb890 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -230,7 +230,9 @@ notification area icon for Syncthing. Supported Syncthing
features:
(base32 "1mw7kxj0smcf4vgpxai7m9vncdx2d3blxqy13hffvza0fxnwkv37"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/syncthing/notify"))
+ (list
+ #:parallel-tests? #f
+ #:import-path "github.com/syncthing/notify"))
(propagated-inputs
(list go-golang-org-x-sys))
(home-page "https://github.com/syncthing/notify")