time-travel-manifest: Use a separate Git checkout cache.
authorLudovic Courtès <ludo@gnu.org>
Sun, 10 Jul 2022 10:41:41 +0000 (12:41 +0200)
committerLudovic Courtès <ludo@gnu.org>
Sun, 10 Jul 2022 21:57:14 +0000 (23:57 +0200)
* etc/time-travel-manifest.scm (guix-instance-compiler): Parameterize
%REPOSITORY-CACHE-DIRECTORY.

etc/time-travel-manifest.scm

index 3d7ecff..f09659d 100644 (file)
 ;;; releases from the current Guix, as per 'guix time-machine'.
 
 (use-modules (srfi srfi-9) (ice-9 match)
-             (guix channels) (guix gexp))
+             (guix channels) (guix gexp)
+             ((guix store) #:select (%store-monad))
+             ((guix monads) #:select (mparameterize return))
+             ((guix git) #:select (%repository-cache-directory))
+             ((guix build utils) #:select (mkdir-p)))
 
 ;; Representation of the latest channels.  This type exists just so we can
 ;; refer to such records in a gexp.
                                               system target)
   (match instance
     (($ <guix-instance> channels)
-     (latest-channel-derivation channels))))
+     ;; When this manifest is evaluated by Cuirass, make sure it does not
+     ;; fiddle with the cached checkout that Cuirass is also using since
+     ;; concurrent accesses are unsafe.
+     (mparameterize %store-monad ((%repository-cache-directory
+                                   (string-append (%repository-cache-directory)
+                                                  "/time-travel")))
+       (return (mkdir-p (%repository-cache-directory)))
+       (latest-channel-derivation channels)))))
 
 (define (guix-instance->manifest-entry instance)
   "Return a manifest entry for INSTANCE."