mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 14:18:38 +02:00
tests
This commit is contained in:
parent
f20f7b7588
commit
4ea76562d7
2 changed files with 15 additions and 18 deletions
|
@ -21,21 +21,6 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
(define-public ucx-upstream-1.11.2
|
|
||||||
(package
|
|
||||||
(inherit gnu:ucx)
|
|
||||||
(name (string-append (package-name gnu:ucx) "-upstream" ))
|
|
||||||
(version "1.11.2")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
|
|
||||||
(sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy"))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(define-public ucx-upstream-1.12.0
|
(define-public ucx-upstream-1.12.0
|
||||||
(package
|
(package
|
||||||
(inherit gnu:ucx)
|
(inherit gnu:ucx)
|
||||||
|
@ -51,5 +36,17 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
(define local-ucx ucx-upstream-1.12.0)
|
(define local-ucx ucx-upstream-1.12.0)
|
||||||
(define-public ucx-latest (latest-version local-ucx gnu:ucx))
|
(define-public ucx-latest (latest-version local-ucx gnu:ucx))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
(define-public ucx-latest-glicid
|
||||||
|
(transform-package
|
||||||
|
(
|
||||||
|
(instead-of "rdma-core" rdma-core-latest)
|
||||||
|
ucx-latest
|
||||||
|
) "glicid"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
(define-public openmpi-glicid-ucx
|
(define-public openmpi-glicid-ucx
|
||||||
(transform-package
|
(transform-package
|
||||||
(
|
(
|
||||||
(instead-of "ucx" ucx-latest) openmpi-glicid
|
(instead-of "ucx" ucx-latest-glicid) openmpi-glicid
|
||||||
) "ucx"
|
) "ucx"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
(define-public openmpi-glicid-libfabric-ucx
|
(define-public openmpi-glicid-libfabric-ucx
|
||||||
(transform-package
|
(transform-package
|
||||||
(
|
(
|
||||||
(instead-of "ucx" ucx-latest)
|
(instead-of "ucx" ucx-latest-glicid)
|
||||||
openmpi-glicid-libfabric
|
openmpi-glicid-libfabric
|
||||||
) "ucx"
|
) "ucx"
|
||||||
)
|
)
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
(define-public openmpi-glicid-libfabric-rdma-ucx
|
(define-public openmpi-glicid-libfabric-rdma-ucx
|
||||||
(transform-package
|
(transform-package
|
||||||
(
|
(
|
||||||
(instead-of "ucx" ucx-latest)
|
(instead-of "ucx" ucx-latest-glicid)
|
||||||
openmpi-glicid-libfabric-rdma
|
openmpi-glicid-libfabric-rdma
|
||||||
) "ucx"
|
) "ucx"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue