gnu: Add qtwayland.
[jackhill/guix/guix.git] / build-aux / check-final-inputs-self-contained.scm
CommitLineData
81f61c17 1;;; GNU Guix --- Functional package management for GNU
5c7e1a32 2;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
81f61c17
LC
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19;;;
20;;; Check whether important binaries are available at hydra.gnu.org.
21;;;
22
23(use-modules (guix store)
5c7e1a32 24 (guix grafts)
81f61c17
LC
25 (guix packages)
26 (guix derivations)
27 (guix ui)
bdb36958 28 (gnu packages commencement)
81f61c17
LC
29 (ice-9 match)
30 (srfi srfi-1)
31 (srfi srfi-26))
32
81f61c17
LC
33(define (final-inputs store system)
34 "Return the list of outputs directories of the final inputs for SYSTEM."
35 (append-map (match-lambda
36 ((name package)
37 (let ((drv (package-derivation store package system)))
38 ;; Libc's 'debug' output refers to gcc-cross-boot0, but it's
39 ;; hard to avoid, so we tolerate it. This should be the
40 ;; only exception.
41 (filter-map (match-lambda
42 (("debug" . directory)
43 (if (string=? "glibc" (package-name package))
44 #f
45 directory))
46 ((_ . directory) directory))
47 (derivation->output-paths drv)))))
48 %final-inputs))
49
50(define (assert-valid-substitute substitute)
51 "Make sure SUBSTITUTE does not refer to any bootstrap inputs, and bail out
52if it does."
53 (let ((references (substitutable-references substitute)))
54 (when (any (cut string-contains <> "boot") references)
55 (leave (_ "'~a' refers to bootstrap inputs: ~s~%")
56 (substitutable-path substitute) references))))
57
58(define (test-final-inputs store system)
59 "Check whether the final inputs for SYSTEM are clean---i.e., they don't
60refer to the bootstrap tools."
61 (format #t "checking final inputs for '~a'...~%" system)
62 (let* ((inputs (final-inputs store system))
63 (available (substitutable-path-info store inputs)))
64 (for-each (lambda (dir)
65 (unless (find (lambda (substitute)
66 (string=? (substitutable-path substitute)
67 dir))
68 available)
69 (leave (_ "~a (system: ~a) has no substitute~%")
70 dir system)))
71 inputs)
72
73 (for-each assert-valid-substitute available)))
74
75;; Entry point.
76(with-store store
43da8f01
LC
77 (parameterize ((%graft? #f))
78 (set-build-options store #:use-substitutes? #t)
81f61c17 79
43da8f01 80 (for-each (cut test-final-inputs store <>)
d7fdab25 81 %hydra-supported-systems)))
81f61c17 82