2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-03-27 00:24:54 +01:00
|
|
|
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2012-11-18 18:35:26 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-18 18:35:26 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-11-18 18:35:26 +01:00
|
|
|
;;; 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.
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-11-18 18:35:26 +01:00
|
|
|
;;; 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
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-11-18 18:35:26 +01:00
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; This file defines build jobs for the Hydra continuation integration
|
|
|
|
;;; tool.
|
|
|
|
;;;
|
|
|
|
|
2013-03-27 00:24:54 +01:00
|
|
|
;; Attempt to use our very own Guix modules.
|
|
|
|
(eval-when (compile load eval)
|
2013-03-28 00:14:38 +01:00
|
|
|
|
|
|
|
;; Ignore any available .go, and force recompilation. This is because our
|
|
|
|
;; checkout in the store has mtime set to the epoch, and thus .go files look
|
|
|
|
;; newer, even though they may not correspond.
|
|
|
|
(set! %fresh-auto-compile #t)
|
|
|
|
|
2013-03-27 00:24:54 +01:00
|
|
|
(and=> (assoc-ref (current-source-location) 'filename)
|
|
|
|
(lambda (file)
|
|
|
|
(let ((dir (dirname file)))
|
|
|
|
(format (current-error-port) "prepending ~s to the load path~%"
|
|
|
|
dir)
|
|
|
|
(set! %load-path (cons dir %load-path))))))
|
|
|
|
|
2012-11-18 18:35:26 +01:00
|
|
|
(use-modules (guix store)
|
|
|
|
(guix packages)
|
2012-11-21 00:57:47 +01:00
|
|
|
((guix utils) #:select (%current-system))
|
2013-01-18 01:06:47 +01:00
|
|
|
(gnu packages)
|
2013-01-18 01:06:24 +01:00
|
|
|
(gnu packages base)
|
2013-05-25 23:24:51 +02:00
|
|
|
(gnu packages gawk)
|
2013-01-18 01:06:24 +01:00
|
|
|
(gnu packages guile)
|
2013-05-26 22:31:15 +02:00
|
|
|
(gnu packages gettext)
|
2013-05-24 23:12:56 +02:00
|
|
|
(gnu packages multiprecision)
|
|
|
|
(gnu packages make-bootstrap)
|
2012-11-25 17:12:46 +01:00
|
|
|
(srfi srfi-1)
|
2012-11-21 00:57:47 +01:00
|
|
|
(srfi srfi-26)
|
2012-11-18 18:35:26 +01:00
|
|
|
(ice-9 match))
|
|
|
|
|
2012-11-21 00:57:47 +01:00
|
|
|
;; 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))
|
|
|
|
|
2013-05-24 23:12:56 +02:00
|
|
|
(define* (package->alist store package system
|
|
|
|
#:optional (package-derivation package-derivation))
|
2012-11-18 18:35:26 +01:00
|
|
|
"Convert PACKAGE to an alist suitable for Hydra."
|
|
|
|
`((derivation . ,(package-derivation store package system))
|
|
|
|
(description . ,(package-synopsis package))
|
|
|
|
(long-description . ,(package-description package))
|
|
|
|
(license . ,(package-license package))
|
2012-11-25 17:12:46 +01:00
|
|
|
(home-page . ,(package-home-page package))
|
|
|
|
(maintainers . ("bug-guix@gnu.org"))))
|
2012-11-18 18:35:26 +01:00
|
|
|
|
|
|
|
(define (package-job store job-name package system)
|
|
|
|
"Return a job called JOB-NAME that builds PACKAGE on SYSTEM."
|
2012-11-21 00:57:47 +01:00
|
|
|
`(,job-name . ,(cut package->alist store package system)))
|
2012-11-18 18:35:26 +01:00
|
|
|
|
2013-05-24 23:12:56 +02:00
|
|
|
(define (package-cross-job store job-name package target system)
|
|
|
|
"Return a job called TARGET.JOB-NAME that cross-builds PACKAGE for TARGET on
|
|
|
|
SYSTEM."
|
|
|
|
`(,(symbol-append (string->symbol target) (string->symbol ".") job-name) .
|
|
|
|
,(cute package->alist store package system
|
|
|
|
(cut package-cross-derivation <> <> target <>))))
|
|
|
|
|
|
|
|
(define %packages-to-cross-build
|
2013-05-25 22:39:51 +02:00
|
|
|
(list gmp mpfr mpc coreutils findutils diffutils patch sed grep
|
|
|
|
gawk gettext hello guile-2.0
|
2013-05-25 00:03:28 +02:00
|
|
|
;; %bootstrap-binaries-tarball
|
|
|
|
;; %binutils-bootstrap-tarball
|
|
|
|
;; %glibc-bootstrap-tarball
|
|
|
|
;; %gcc-bootstrap-tarball
|
|
|
|
;; %guile-bootstrap-tarball
|
|
|
|
))
|
2013-05-24 23:12:56 +02:00
|
|
|
|
|
|
|
(define %cross-targets
|
|
|
|
'("mips64el-linux-gnu"))
|
|
|
|
|
2012-11-18 18:35:26 +01:00
|
|
|
(define (hydra-jobs store arguments)
|
|
|
|
"Return Hydra jobs."
|
|
|
|
(define system
|
2012-11-21 00:57:47 +01:00
|
|
|
(or (assoc-ref arguments system)
|
|
|
|
(%current-system)))
|
2012-11-18 18:35:26 +01:00
|
|
|
|
2013-05-24 23:12:56 +02:00
|
|
|
(define job-name
|
|
|
|
(compose string->symbol package-full-name))
|
|
|
|
|
|
|
|
(define cross-jobs
|
|
|
|
(append-map (lambda (target)
|
|
|
|
(map (lambda (package)
|
|
|
|
(package-cross-job store (job-name package)
|
|
|
|
package target system))
|
|
|
|
%packages-to-cross-build))
|
|
|
|
%cross-targets))
|
|
|
|
|
2012-11-25 17:12:46 +01:00
|
|
|
;; Return one job for each package, except bootstrap packages.
|
|
|
|
(let ((base-packages (delete-duplicates
|
|
|
|
(append-map (match-lambda
|
|
|
|
((_ package _ ...)
|
|
|
|
(match (package-transitive-inputs
|
|
|
|
package)
|
|
|
|
(((_ inputs _ ...) ...)
|
|
|
|
inputs))))
|
|
|
|
%final-inputs))))
|
|
|
|
(fold-packages (lambda (package result)
|
|
|
|
(if (member package base-packages)
|
|
|
|
result
|
2013-05-24 23:12:56 +02:00
|
|
|
(cons (package-job store (job-name package)
|
|
|
|
package system)
|
|
|
|
result)))
|
|
|
|
cross-jobs)))
|