diff options
author | Ahmad Draidi <a.r.draidi@redscript.org> | 2024-05-02 05:37:47 +0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-05-04 19:14:25 +0200 |
commit | 2cd6831161700409a16e5affd9145d0d4f2a56fe (patch) | |
tree | d64b65373dce3630a80a5f60c5e10a5b240f12b7 /doc | |
parent | 402d0a9b9d290a2e3c549932c8d7262622c58ce1 (diff) | |
download | guix-2cd6831161700409a16e5affd9145d0d4f2a56fe.tar.gz |
services: cuirass: Use separate extra options for cuirass web process.
Currently, "extra-options" is passed to both "cuirass register" and "cuirass web" processes. This makes it impractical since the extra parameters have to be intended for and supported by both processes. * gnu/services/cuirass.scm (<cuirass-configuration>): Add a web-extra-options field. (cuirass-shepherd-service): Replace extra-options with web-extra-options for cuirass web. * doc/guix.texi (Continuous Integration): Document the changes. Change-Id: Iba79c559ea8267aaf8f25248f3d18ed7b352cb60 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 749d689ac1..fc5760d30d 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -34494,7 +34494,10 @@ When substituting a pre-built binary fails, fall back to building packages locally. @item @code{extra-options} (default: @code{'()}) -Extra options to pass when running the Cuirass processes. +Extra options to pass when running the @code{cuirass register} process. + +@item @code{web-extra-options} (default: @code{'()}) +Extra options to pass when running the @code{cuirass web} process. @end table @end deftp |