guix-commits
[Top][All Lists]
Advanced

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

02/03: tests: Mark VM images as non-substitutable.


From: guix-commits
Subject: 02/03: tests: Mark VM images as non-substitutable.
Date: Wed, 8 Apr 2020 06:42:52 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9cfd889f1d0135d20d3aad13fac5c1a9401c06fd
Author: Ludovic Courtès <address@hidden>
AuthorDate: Wed Apr 8 12:27:28 2020 +0200

    tests: Mark VM images as non-substitutable.
    
    * gnu/tests/install.scm (run-install): Pass #:substitutable? to
    'system-disk-image' and to 'gexp->derivation'.
---
 gnu/tests/install.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index b0b40f2..799a659 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -232,7 +232,9 @@ packages defined in installation-os."
                                  os (list target))
                                 #:disk-image-size install-size
                                 #:file-system-type
-                                installation-disk-image-file-system-type)))
+                                installation-disk-image-file-system-type
+                                ;; Don't provide substitutes; too big.
+                                #:substitutable? #f)))
     (define install
       (with-imported-modules '((guix build utils)
                                (gnu build marionette))
@@ -296,7 +298,8 @@ packages defined in installation-os."
               (exit #$(and gui-test
                            (gui-test #~marionette)))))))
 
-    (gexp->derivation "installation" install)))
+    (gexp->derivation "installation" install
+                      #:substitutable? #f)))      ;too big
 
 (define* (qemu-command/writable-image image #:key (memory-size 256))
   "Return as a monadic value the command to run QEMU on a writable copy of



reply via email to

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