1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-09 02:35:54 +02:00

gnu: nats-server: Update to 2.14.0.

* gnu/packages/high-availability.scm (nats-server): Update to 2.14.0.
[arguments] <test-flags>: Rework options to reflect upstream test case
for non server parts.
[inputs]: Remove go-go-uber-org-automaxprocs.

Change-Id: I7842e23fca7e6c1452b951e0f3748aa6e8ac802e
This commit is contained in:
Sharlatan Hellseher
2026-05-01 21:59:11 +01:00
parent bdd71344e5
commit dca348bb09
+3 -9
View File
@@ -297,7 +297,7 @@ applications.")
(define-public nats-server
(package
(name "nats-server")
(version "2.12.1")
(version "2.14.0")
(source
(origin
(method git-fetch)
@@ -306,7 +306,7 @@ applications.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "04dza8jqw4lhnqj1ip05jx47g9frb00x9s0yy1863qf88bvszv8z"))))
(base32 "1nj8lkrhqdnr2h36lg8sfqd1988ww9whamr73qbj10lsx32ip0jb"))))
(build-system go-build-system)
(arguments
(list
@@ -315,12 +315,7 @@ applications.")
;; The test logic is taken from project's GitHub Actions workflow file
;; <.github/workflows/tests.yaml>.
#:test-flags
#~(list "-count=1" "-vet=off" "-failfast"
"-skip" (string-join
(list "TestHTTPHost"
"TestSysLogger"
"TestLogMaxArchives")
"|") )
#~(list "-p=1" "-count=1" "-vet=off" "-failfast")
#:test-subdirs
#~(list "conf/..." "internal/..." "logger/..." "test/...")))
(inputs
@@ -332,7 +327,6 @@ applications.")
go-github-com-nats-io-nats-go
go-github-com-nats-io-nkeys
go-github-com-nats-io-nuid
go-go-uber-org-automaxprocs
go-golang-org-x-crypto
go-golang-org-x-sys
go-golang-org-x-time))