ci: Add derivation inputs.
* gnu/ci.scm (derivation->job): Add the derivation inputs to the job association list.
This commit is contained in:
parent
fa4dae68c4
commit
a5c2e0dc4e
1 changed files with 3 additions and 0 deletions
|
@ -92,6 +92,9 @@ MAX-SILENT-TIME and TIMEOUT are build options passed to the daemon when
|
||||||
building the derivation."
|
building the derivation."
|
||||||
`((#:job-name . ,name)
|
`((#:job-name . ,name)
|
||||||
(#:derivation . ,(derivation-file-name drv))
|
(#:derivation . ,(derivation-file-name drv))
|
||||||
|
(#:inputs . ,(map (compose derivation-file-name
|
||||||
|
derivation-input-derivation)
|
||||||
|
(derivation-inputs drv)))
|
||||||
(#:outputs . ,(filter-map
|
(#:outputs . ,(filter-map
|
||||||
(lambda (res)
|
(lambda (res)
|
||||||
(match res
|
(match res
|
||||||
|
|
Reference in a new issue