hydra: 'evaluate' passes an alist to the entry point.
authorLudovic Courtès <ludo@gnu.org>
Tue, 21 Nov 2017 22:00:38 +0000 (23:00 +0100)
committerLudovic Courtès <ludo@gnu.org>
Tue, 21 Nov 2017 22:09:16 +0000 (23:09 +0100)
* build-aux/hydra/evaluate.scm (%top-srcdir): New variable.
<top level>: Pass it to 'hydra-jobs'.

build-aux/hydra/evaluate.scm

index 604022a..8e391f4 100644 (file)
              (ice-9 pretty-print)
              (ice-9 format))
 
+(define %top-srcdir
+  (and=> (assq-ref (current-source-location) 'filename)
+         (lambda (file)
+           (canonicalize-path
+            (string-append (dirname file) "/../..")))))
+
 (define %user-module
   ;; Hydra user module.
   (let ((m (make-module)))
@@ -101,7 +107,8 @@ Otherwise return THING."
                             (if (equal? cuirass? "cuirass")
                                 'cuirass-jobs
                                 'hydra-jobs))
-                store '())
+                store `((guix
+                         . ((file-name . ,%top-srcdir)))))
           (((names . thunks) ...)
            (map (lambda (job thunk)
                   (format (current-error-port) "evaluating '~a'... " job)