diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2017-09-16 12:57:37 +0200 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2017-09-27 22:19:28 +0200 |
commit | 66bc1d2aaf74fc7eb4ef9b3519c69bd37142ffb3 (patch) | |
tree | e08443c9edcd519d22bc5ce432cb817725499206 /doc | |
parent | 408091d5a58801f88f8a5269387ce5efa701508b (diff) | |
download | guix-66bc1d2aaf74fc7eb4ef9b3519c69bd37142ffb3.tar guix-66bc1d2aaf74fc7eb4ef9b3519c69bd37142ffb3.tar.gz |
cuirass: Add gnu-system build spec.
* build-aux/hydra/gnu-system.scm (hydra-jobs): Support subset "hello".
* build-aux/cuirass/gnu-system.scm: New file.
* doc/guix.texi (Continuous Integration): Update example spec.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index fff3fbd5fd..5a32476bd3 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -15367,15 +15367,8 @@ packages, as prescribed in the @file{gnu-system.scm} example spec: (let ((spec #~((#:name . "guix") (#:url . "git://git.savannah.gnu.org/guix.git") (#:load-path . ".") - - ;; Here we must provide an absolute file name. - ;; We take jobs from one of the examples provided - ;; by Cuirass. - (#:file . #$(file-append - cuirass - "/tests/gnu-system.scm")) - - (#:proc . hydra-jobs) + (#:file . "build-aux/cuirass/gnu-system.scm") + (#:proc . cuirass-jobs) (#:arguments (subset . "hello")) (#:branch . "master")))) (service cuirass-service-type |