hydra: Extract the actual file name from the Guix checkout.
* build-aux/hydra/guix.scm (hydra-jobs): Extract the `file-name' part of CHECKOUT.
This commit is contained in:
parent
59e6ae6cf1
commit
f29f066439
|
@ -94,5 +94,8 @@ containing a Git checkout of Guix."
|
||||||
(define checkout
|
(define checkout
|
||||||
(assq-ref arguments 'guix))
|
(assq-ref arguments 'guix))
|
||||||
|
|
||||||
`((tarball . ,(package->alist store (tarball-package checkout)
|
(format #t "using checkout ~s~%" checkout)
|
||||||
(%current-system)))))
|
(let ((directory (assq-ref checkout 'file-name)))
|
||||||
|
`((tarball . ,(package->alist store
|
||||||
|
(tarball-package directory)
|
||||||
|
(%current-system))))))
|
||||||
|
|
Loading…
Reference in New Issue