mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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
1 changed files with 5 additions and 2 deletions
|
@ -94,5 +94,8 @@ (define systems
|
|||
(define checkout
|
||||
(assq-ref arguments 'guix))
|
||||
|
||||
`((tarball . ,(package->alist store (tarball-package checkout)
|
||||
(%current-system)))))
|
||||
(format #t "using checkout ~s~%" checkout)
|
||||
(let ((directory (assq-ref checkout 'file-name)))
|
||||
`((tarball . ,(package->alist store
|
||||
(tarball-package directory)
|
||||
(%current-system))))))
|
||||
|
|
Loading…
Reference in a new issue