mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-14 17:10:37 +02:00
gnu: gloo: Honor #:tests? in 'check' phase.
* gnu/packages/machine-learning.scm (gloo)[arguments]: In 'check' phase, honor #:tests?.
This commit is contained in:
@@ -2462,9 +2462,9 @@ that:
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "make" "gloo_test")
|
||||
#t)))))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "make" "gloo_test")))))))
|
||||
(synopsis "Collective communications library")
|
||||
(description
|
||||
"Gloo is a collective communications library. It comes with a
|
||||
|
||||
Reference in New Issue
Block a user