On 12.10.20 09:37, Mathieu Othacehe wrote:
>
> Hello Jonathan,
>
>> It happens when scamping around in the database:
>> update Specifications set proc_args='((subset "htop" "icedove") (systems
>> "x86_64-linux))';
>
> You mean it happens only when modifying 'proc_args' while Cuirass is
> running? Could you share your specifications so that I can try to
> reproduce it?
Sorry for the late answer
```
(define %cuirass-specs
#~(list
'((#:name . "foo-master")
(#:load-path-inputs . ())
(#:package-path-inputs . ("foo-packages"))
(#:proc-input . "guix")
(#:proc-file . "build-aux/cuirass/gnu-system.scm")
(#:proc . cuirass-jobs)
(#:proc-args . ((subset . ("htop" "icedove"))
(systems . ("x86_64-linux"))))
(#:inputs . (((#:name . "guix")
(#:url . "https://git.savannah.gnu.org/git/guix.git")
(#:load-path . ".")
(#:branch . "master")
(#:no-compile? . #t))
((#:name . "foo-packages")
(#:url . "https://gitlab.com/foo/foo.git")
(#:load-path . ".")
(#:branch . "master")
(#:no-compile? . #t))))
(#:build-outputs . ()))))
```