summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJan Nieuwenhuizen <janneke@gnu.org>2016-09-15 23:15:54 +0200
committerMathieu Lirzin <mthl@gnu.org>2016-09-23 16:50:36 +0200
commit5ef0701f54482b83c433beb578715eb0d5321a74 (patch)
treec7d970a1b7c1a11f6005aa497fcfcc6d5d3c415f /tests
parentfca42b010e56532fded536534ccb15b078a33e77 (diff)
downloadcuirass-5ef0701f54482b83c433beb578715eb0d5321a74.tar
cuirass-5ef0701f54482b83c433beb578715eb0d5321a74.tar.gz
base: Support tracking of a Guix package's git.
* src/schema.sql (Specifications): Add no_compile_p column. * src/cuirass/database.scm (db-add-specification) (db-get-specifications): Handle #:no-compile? property. * tests/database.scm (example-spec): Adapt. * src/cuirass/base.scm (process-specs): Skip compilation if #:no-compile?. Signed-off-by: Mathieu Lirzin <mthl@gnu.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/database.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/database.scm b/tests/database.scm
index 46c5794..2dd3746 100644
--- a/tests/database.scm
+++ b/tests/database.scm
@@ -30,7 +30,8 @@
(#:arguments (subset . "hello"))
(#:branch . "master")
(#:tag . #f)
- (#:commit . #f)))
+ (#:commit . #f)
+ (#:no-compile? . #f)))
(define* (make-dummy-job #:optional (name "foo"))
`((#:name . ,name)