mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
build-system/gnu: Add `tests?' parameter.
* guix/build-system/gnu.scm (gnu-build): Add `tests?' parameter. [builder]: Inherit it.
This commit is contained in:
parent
d9dbab18e2
commit
c3c7eb4194
1 changed files with 2 additions and 0 deletions
|
@ -45,6 +45,7 @@ (define* (gnu-build store name source inputs
|
|||
#:key (outputs '("out")) (configure-flags ''())
|
||||
(make-flags ''())
|
||||
(patches ''()) (patch-flags ''("--batch" "-p1"))
|
||||
(tests? #t)
|
||||
(parallel-build? #t) (parallel-tests? #t)
|
||||
(phases '%standard-phases)
|
||||
(system (%current-system))
|
||||
|
@ -65,6 +66,7 @@ (define builder
|
|||
#:phases ,phases
|
||||
#:configure-flags ,configure-flags
|
||||
#:make-flags ,make-flags
|
||||
#:tests? ,tests?
|
||||
#:parallel-build? ,parallel-build?
|
||||
#:parallel-tests? ,parallel-tests?)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue