diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-11-11 22:28:46 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-11-13 23:26:35 +0100 |
commit | 887fd835a7c90f720d36a211478012547feaead0 (patch) | |
tree | c62f3a640d529bc139a05234bb6f1ffdf45f1072 /gnu/ci.scm | |
parent | f041db8696c7e8073761af5aa8f7599eec1d5174 (diff) | |
download | guix-887fd835a7c90f720d36a211478012547feaead0.tar guix-887fd835a7c90f720d36a211478012547feaead0.tar.gz |
tests: "make check-system" uses Guix built with (guix self).
This is a followup to 7e6d8d366a61f951936ed83371877ce006f679f6.
It means that "make check-system" can run tests from (gnu tests install)
much faster because it does not need to build a full 'guix' package.
* gnu/ci.scm (channel-instance->package): Export.
* build-aux/run-system-tests.scm (tests-for-channel-instance): New
procedure, with code formerly in 'run-system-tests'.
(run-system-tests): Call 'interned-file' for SOURCE, and add call to
'tests-for-channel-instance'.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r-- | gnu/ci.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 5d5a826647..f24049e772 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -54,7 +54,8 @@ #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) #:use-module (ice-9 match) - #:export (hydra-jobs)) + #:export (channel-instance->package + hydra-jobs)) ;;; Commentary: ;;; |