diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-05-22 14:30:15 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-05-25 14:47:16 +0200 |
commit | e4c02ac70f408ae3a4f6de761707a7ca7e5525e5 (patch) | |
tree | aa189b944b55131cf6fc1c2ed2d50b3d147b6ea8 | |
parent | 42162c84dce91aa6ccbdc91ab26ba0819c5f40e7 (diff) | |
download | guix-e4c02ac70f408ae3a4f6de761707a7ca7e5525e5.tar.gz |
ci: Add derivation inputs.
* gnu/ci.scm (derivation->job): Add the derivation inputs to the job association list.
-rw-r--r-- | gnu/ci.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 8d3590bcdc..c5de25e70e 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -92,6 +92,9 @@ MAX-SILENT-TIME and TIMEOUT are build options passed to the daemon when building the derivation." `((#:job-name . ,name) (#:derivation . ,(derivation-file-name drv)) + (#:inputs . ,(map (compose derivation-file-name + derivation-input-derivation) + (derivation-inputs drv))) (#:outputs . ,(filter-map (lambda (res) (match res |