diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-09 23:20:42 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:30 +0100 |
commit | ef801410cf8f5f7805d5629f40c3bfdd0e738a6d (patch) | |
tree | 7eb992c28237d6126666fc1c8e03b5cb3619127f | |
parent | 4337b7eb71dec6981391039d6ba4261cb6fd4356 (diff) |
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
-rw-r--r-- | gnu/packages/syncthing.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 6470c2d2a2..bb893ef157 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -229,7 +229,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") |