mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
tests: Mark VM images as non-substitutable.
* gnu/tests/install.scm (run-install): Pass #:substitutable? to 'system-disk-image' and to 'gexp->derivation'.
This commit is contained in:
parent
a328f66a9e
commit
9cfd889f1d
1 changed files with 5 additions and 2 deletions
|
@ -232,7 +232,9 @@ (define* (run-install target-os target-os-source
|
|||
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 @@ (define marionette
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue