2017-11-21 17:02:43 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-03-29 11:30:12 -04:00
|
|
|
;;; Copyright © 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2017-11-21 17:02:43 -05:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; This file defines a continuous integration job to build the same modular
|
|
|
|
;;; Guix as 'guix pull', which is defined in (guix self).
|
|
|
|
;;;
|
|
|
|
|
|
|
|
(use-modules (guix store)
|
|
|
|
(guix config)
|
|
|
|
(guix utils)
|
|
|
|
((guix packages) #:select (%hydra-supported-systems))
|
|
|
|
(guix derivations)
|
|
|
|
(guix monads)
|
|
|
|
((guix licenses) #:prefix license:)
|
|
|
|
(srfi srfi-1)
|
|
|
|
(ice-9 match))
|
|
|
|
|
|
|
|
;; XXX: Debugging hack: since `hydra-eval-guile-jobs' redirects the output
|
|
|
|
;; port to the bit bucket, let us write to the error port instead.
|
|
|
|
(setvbuf (current-error-port) _IOLBF)
|
|
|
|
(set-current-output-port (current-error-port))
|
|
|
|
|
|
|
|
(define* (build-job store source version system)
|
|
|
|
"Return a Hydra job a list building the modular Guix derivation from SOURCE
|
|
|
|
for SYSTEM. Use VERSION as the version identifier."
|
|
|
|
(lambda ()
|
2018-03-29 11:30:12 -04:00
|
|
|
(define build
|
|
|
|
(primitive-load (string-append source "/build-aux/build-self.scm")))
|
|
|
|
|
2017-11-21 17:02:43 -05:00
|
|
|
`((derivation . ,(derivation-file-name
|
2018-03-29 11:30:12 -04:00
|
|
|
(run-with-store store
|
2018-04-08 13:51:22 -04:00
|
|
|
(build source #:version version #:system system
|
2018-06-10 16:20:35 -04:00
|
|
|
#:pull-version 1
|
2018-04-08 13:51:22 -04:00
|
|
|
#:guile-version "2.2")))) ;the latest 2.2.x
|
2017-11-21 17:02:43 -05:00
|
|
|
(description . "Modular Guix")
|
|
|
|
(long-description
|
|
|
|
. "This is the modular Guix package as produced by 'guix pull'.")
|
|
|
|
(license . ,license:gpl3+)
|
|
|
|
(home-page . ,%guix-home-page-url)
|
|
|
|
(maintainers . (,%guix-bug-report-address)))))
|
|
|
|
|
|
|
|
(define (hydra-jobs store arguments)
|
|
|
|
"Return Hydra jobs."
|
|
|
|
(define systems
|
2018-04-08 16:07:47 -04:00
|
|
|
(match (assoc-ref arguments 'systems)
|
|
|
|
(#f %hydra-supported-systems)
|
|
|
|
((lst ...) lst)
|
|
|
|
((? string? str) (call-with-input-string str read))))
|
2017-11-21 17:02:43 -05:00
|
|
|
|
|
|
|
(define guix-checkout
|
2018-03-27 03:48:16 -04:00
|
|
|
(or (assq-ref arguments 'guix) ;Hydra on hydra
|
|
|
|
(assq-ref arguments 'guix-modular))) ;Cuirass on berlin
|
2017-11-21 17:02:43 -05:00
|
|
|
|
|
|
|
(define version
|
|
|
|
(or (assq-ref guix-checkout 'revision)
|
|
|
|
"0.unknown"))
|
|
|
|
|
|
|
|
(let ((file (assq-ref guix-checkout 'file-name)))
|
2018-03-27 03:48:16 -04:00
|
|
|
(format (current-error-port) "using checkout ~s (~s; arguments: ~s)~%"
|
|
|
|
guix-checkout file arguments)
|
2017-11-21 17:02:43 -05:00
|
|
|
|
|
|
|
(map (lambda (system)
|
|
|
|
(let ((name (string->symbol
|
|
|
|
(string-append "guix." system))))
|
|
|
|
`(,name
|
|
|
|
. ,(build-job store file version system))))
|
2018-04-08 16:07:47 -04:00
|
|
|
systems)))
|