Update cuirass config

Julien LepillerThu Jun 11 14:35:58+0200 2020

8df784e

Update cuirass config

modules/config/cuirass.scm

4141
4242
(define %cuirass-specifications
4343
  #~(list
44-
      '((#:name "guix-modular-master")
44+
      '((#:name . "guix-modular-master")
4545
        (#:load-path-inputs . ())
4646
        (#:package-path-inputs . ())
4747
        (#:proc-input . "guix-modular")
4848
        (#:proc-file . "build-aux/cuirass/guix-modular.scm")
4949
        (#:proc . cuirass-jobs)
5050
        (#:proc-args (systems . ("x86_64-linux")))
51-
        (#:inputs . (#$(guix-input "guix-modular" "master"))))
52-
      '((#:name "master")
51+
        (#:inputs . (#$(guix-input "guix-modular" "master")))
52+
	(#:build-outputs . ()))
53+
      '((#:name . "master")
5354
        (#:load-path-inputs . ())
5455
        (#:package-path-inputs . ())
5556
        (#:proc-input . "guix")
5657
        (#:proc-file . "build-aux/cuirass/gnu-system.scm")
5758
        (#:proc . cuirass-jobs)
5859
        (#:proc-args (subset . "all") (systems . ("x86_64-linux")))
59-
        (#:inputs . (#$(guix-input "guix" "master"))))))
60+
        (#:inputs . (#$(guix-input "guix" "master")))
61+
	(#:build-outputs . ()))))
6062
6163
(define (publish-locations url)
6264
  "Return the nginx location blocks for 'guix publish' running on URL."

systems/amadeus.scm

6161
        (guix-service-type config =>
6262
          (guix-configuration
6363
            (inherit config)
64-
            (substitute-urls '())))))))
64+
            (substitute-urls '())
65+
	    (extra-options '("-M2" "--no-substitutes"))))))))