summaryrefslogtreecommitdiff
path: root/tests/hello-subset.scm
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2016-06-16 02:05:18 +0200
committerMathieu Lirzin <mthl@gnu.org>2016-06-16 11:42:59 +0200
commit992b57dade927832a6c143cceac07ce30f8341ce (patch)
tree53837b578f5c16daea443e12215f8c470d4d1b5d /tests/hello-subset.scm
parent6587ddea5a52f455953bd723a16c54976d371a8e (diff)
downloadcuirass-992b57dade927832a6c143cceac07ce30f8341ce.tar
cuirass-992b57dade927832a6c143cceac07ce30f8341ce.tar.gz
Support multiples <job-spec> evaluation.
Diffstat (limited to 'tests/hello-subset.scm')
-rw-r--r--tests/hello-subset.scm21
1 files changed, 14 insertions, 7 deletions
diff --git a/tests/hello-subset.scm b/tests/hello-subset.scm
index 3330142..7139d95 100644
--- a/tests/hello-subset.scm
+++ b/tests/hello-subset.scm
@@ -24,10 +24,17 @@
(define (local-file file)
(string-append (dirname (current-filename)) "/" file))
-(make-job-spec
- #:name "guix"
- #:url "git://git.savannah.gnu.org/guix.git"
- #:branch "master"
- #:file (local-file "gnu-system.scm")
- #:proc 'hydra-jobs
- #:arguments '((subset . "hello")))
+(list (make-job-spec
+ #:name "guix"
+ #:url "git://git.savannah.gnu.org/guix.git"
+ #:branch "master"
+ #:file (local-file "gnu-system.scm")
+ #:proc 'hydra-jobs
+ #:arguments '((subset . "hello")))
+ (make-job-spec
+ #:name "guix"
+ #:url "git://git.savannah.gnu.org/guix.git"
+ #:branch "core-updates"
+ #:file (local-file "gnu-system.scm")
+ #:proc 'hydra-jobs
+ #:arguments '((subset . "hello"))))