hydra: Pass the directory name of the Nix checkout.
* build-aux/hydra/guix.scm (hydra-jobs): Extract the 'file-name' item from NIX-CHECKOUT, and pass that to 'tarball-package'.
This commit is contained in:
parent
1210c32ecc
commit
72d9148fbf
|
@ -98,15 +98,16 @@ containing a Git checkout of Guix."
|
||||||
(_
|
(_
|
||||||
(list (%current-system)))))
|
(list (%current-system)))))
|
||||||
|
|
||||||
(define checkout
|
(define guix-checkout
|
||||||
(assq-ref arguments 'guix))
|
(assq-ref arguments 'guix))
|
||||||
|
|
||||||
(define nix-checkout
|
(define nix-checkout
|
||||||
(assq-ref arguments 'nix))
|
(assq-ref arguments 'nix))
|
||||||
|
|
||||||
(format (current-error-port) "using checkout ~s (Nix: ~s)~%"
|
(format (current-error-port) "using checkout ~s (Nix: ~s)~%"
|
||||||
checkout nix-checkout)
|
guix-checkout nix-checkout)
|
||||||
(let ((directory (assq-ref checkout 'file-name)))
|
(let ((guix (assq-ref guix-checkout 'file-name))
|
||||||
|
(nix (assq-ref nix-checkout 'file-name)))
|
||||||
`((tarball . ,(cute package->alist store
|
`((tarball . ,(cute package->alist store
|
||||||
(tarball-package directory nix-checkout)
|
(tarball-package guix nix)
|
||||||
(%current-system))))))
|
(%current-system))))))
|
||||||
|
|
Loading…
Reference in New Issue