guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: ci: Add derivation inputs.


From: guix-commits
Subject: branch master updated: ci: Add derivation inputs.
Date: Tue, 25 May 2021 03:46:44 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new a5c2e0d  ci: Add derivation inputs.
a5c2e0d is described below

commit a5c2e0dc4eee1a4319d2dfc1562e38fff76123a5
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Sat May 22 14:30:15 2021 +0200

    ci: Add derivation inputs.
    
    * gnu/ci.scm (derivation->job): Add the derivation inputs to the job
    association list.
---
 gnu/ci.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/ci.scm b/gnu/ci.scm
index 8d3590b..c5de25e 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]