From e5609c29c4b3e570772f3d0e5b310bcf1078fe6d Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Sun, 12 Jun 2016 14:40:56 +0200 Subject: [PATCH] gnu-system: Add hello subset. * tests/gnu-system.scm (hydra-jobs): Add hello subset. --- tests/gnu-system.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/gnu-system.scm b/tests/gnu-system.scm index 943ae26..d58f47e 100644 --- a/tests/gnu-system.scm +++ b/tests/gnu-system.scm @@ -170,8 +170,9 @@ valid." "Return Hydra jobs." (define subset (match (assoc-ref arguments 'subset) - ("core" 'core) ; only build core packages - (_ 'all))) ; build everything + ("core" 'core) ; only build core packages + ("hello" 'hello) ; only build hello + (_ 'all))) ; build everything (define (cross-jobs system) (define (from-32-to-64? target) @@ -226,6 +227,11 @@ valid." package system)) %core-packages) (cross-jobs system))) + ((hello) + ;; Build hello package only. + (if (string=? system (%current-system)) + (list (package-job-spec store (job-name hello) hello system)) + '())) (else (error "unknown subset" subset)))) %hydra-supported-systems)))