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:48:15 +0200 |
commit | 1ebb6d6735c13d164fc53c90c74412eb922d8907 (patch) | |
tree | 12c4e0ad10fba71b91dd9950acf91784c253865e | |
parent | 13bd2db67c42ce3fed4b60b90e25b2facc476d32 (diff) |
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 5ab1b51d82..0c1387e98a 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -87,6 +87,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 |