2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
monads: Move '%store-monad' and related procedures where they belong.
This turns (guix monads) into a generic module for monads, and moves the
store monad and related monadic procedures in their corresponding
module.
* guix/monads.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file, package-file, package->derivation,
package->cross-derivation, origin->derivation, imported-modules,
compiled, modules, built-derivations, run-with-store): Move to...
* guix/store.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file): ... here.
(%guile-for-build): New variable.
(run-with-store): Moved from monads.scm. Remove default value for
#:guile-for-build.
* guix/packages.scm (default-guile): Export.
(set-guile-for-build): New procedure.
(package-file, package->derivation, package->cross-derivation,
origin->derivation): Moved from monads.scm.
* guix/derivations.scm (%guile-for-build): Remove.
(imported-modules): Rename to...
(%imported-modules): ... this.
(compiled-modules): Rename to...
(%compiled-modules): ... this.
(built-derivations, imported-modules, compiled-modules): New
procedures.
* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm,
gnu/services/dmd.scm, gnu/services/networking.scm,
gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm,
gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm,
guix/gexp.scm, guix/git-download.scm, guix/profiles.scm,
guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly.
* guix/monad-repl.scm (default-guile-derivation): New procedure.
(store-monad-language, run-in-store): Use it.
* build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit
'set-guile-for-build' call.
* guix/scripts/archive.scm (derivation-from-expression): Likewise.
* guix/scripts/build.scm (options/resolve-packages): Likewise.
* guix/scripts/environment.scm (guix-environment): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* doc/guix.texi (The Store Monad): Adjust module names accordingly.
2015-01-14 13:34:52 +01:00
|
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015 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)
|
2013-06-20 22:49:34 +02:00
|
|
|
|
(let ((dir (string-append (dirname file) "/../..")))
|
2013-03-27 00:24:54 +01:00
|
|
|
|
(format (current-error-port) "prepending ~s to the load path~%"
|
|
|
|
|
dir)
|
|
|
|
|
(set! %load-path (cons dir %load-path))))))
|
|
|
|
|
|
2014-04-05 22:40:16 +02:00
|
|
|
|
(use-modules (guix config)
|
|
|
|
|
(guix store)
|
2012-11-18 18:35:26 +01:00
|
|
|
|
(guix packages)
|
2013-09-18 20:49:47 +02:00
|
|
|
|
(guix derivations)
|
2014-04-05 22:40:16 +02:00
|
|
|
|
(guix monads)
|
|
|
|
|
((guix licenses) #:select (gpl3+))
|
2012-11-21 00:57:47 +01:00
|
|
|
|
((guix utils) #:select (%current-system))
|
2014-04-05 22:40:16 +02:00
|
|
|
|
((guix scripts system) #:select (read-operating-system))
|
2013-01-18 01:06:47 +01:00
|
|
|
|
(gnu packages)
|
2014-03-25 13:57:51 +01:00
|
|
|
|
(gnu packages gcc)
|
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-12-10 13:56:26 +01:00
|
|
|
|
(gnu packages compression)
|
2013-05-24 23:12:56 +02:00
|
|
|
|
(gnu packages multiprecision)
|
|
|
|
|
(gnu packages make-bootstrap)
|
2014-08-28 19:57:08 +02:00
|
|
|
|
(gnu packages commencement)
|
2014-04-05 22:40:16 +02:00
|
|
|
|
(gnu system)
|
|
|
|
|
(gnu system vm)
|
2014-05-31 22:15:06 +02:00
|
|
|
|
(gnu system install)
|
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."
|
2013-09-18 19:37:50 +02:00
|
|
|
|
`((derivation . ,(derivation-file-name
|
2014-11-21 16:00:47 +01:00
|
|
|
|
(package-derivation store package system
|
|
|
|
|
#:graft? #f)))
|
2012-11-18 18:35:26 +01:00
|
|
|
|
(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))
|
2014-02-27 22:23:04 +01:00
|
|
|
|
(maintainers . ("bug-guix@gnu.org"))
|
|
|
|
|
|
|
|
|
|
;; Work around versions of 'hydra-eval-guile-jobs' before Hydra commit
|
|
|
|
|
;; 61448ca (27 Feb. 2014) which used a default timeout of 2h.
|
|
|
|
|
(timeout . 72000)))
|
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."
|
2013-07-16 09:59:25 +02:00
|
|
|
|
(let ((job-name (symbol-append job-name (string->symbol ".")
|
|
|
|
|
(string->symbol system))))
|
|
|
|
|
`(,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."
|
2013-07-16 09:59:25 +02:00
|
|
|
|
`(,(symbol-append (string->symbol target) (string->symbol ".") job-name
|
|
|
|
|
(string->symbol ".") (string->symbol system)) .
|
2013-05-24 23:12:56 +02:00
|
|
|
|
,(cute package->alist store package system
|
2014-11-21 16:00:47 +01:00
|
|
|
|
(lambda* (store package system #:key graft?)
|
|
|
|
|
(package-cross-derivation store package target system
|
|
|
|
|
#:graft? graft?)))))
|
2013-05-24 23:12:56 +02:00
|
|
|
|
|
2013-09-08 12:10:25 +02:00
|
|
|
|
(define %core-packages
|
2014-03-25 13:40:27 +01:00
|
|
|
|
;; Note: Don't put the '-final' package variants because (1) that's
|
|
|
|
|
;; implicit, and (2) they cannot be cross-built (due to the explicit input
|
|
|
|
|
;; chain.)
|
2014-03-25 13:57:51 +01:00
|
|
|
|
(list gcc-4.8 gcc-4.7 glibc binutils
|
2014-01-11 11:47:38 +01:00
|
|
|
|
gmp mpfr mpc coreutils findutils diffutils patch sed grep
|
2013-12-10 13:56:26 +01:00
|
|
|
|
gawk gnu-gettext hello guile-2.0 zlib gzip xz
|
2013-06-25 23:45:34 +02:00
|
|
|
|
%bootstrap-binaries-tarball
|
|
|
|
|
%binutils-bootstrap-tarball
|
|
|
|
|
%glibc-bootstrap-tarball
|
|
|
|
|
%gcc-bootstrap-tarball
|
2013-06-26 22:41:09 +02:00
|
|
|
|
%guile-bootstrap-tarball
|
|
|
|
|
%bootstrap-tarballs))
|
2013-05-24 23:12:56 +02:00
|
|
|
|
|
2013-09-08 12:10:25 +02:00
|
|
|
|
(define %packages-to-cross-build
|
|
|
|
|
%core-packages)
|
|
|
|
|
|
2013-05-24 23:12:56 +02:00
|
|
|
|
(define %cross-targets
|
2013-06-26 22:41:09 +02:00
|
|
|
|
'("mips64el-linux-gnu"
|
|
|
|
|
"mips64el-linux-gnuabi64"))
|
2013-05-24 23:12:56 +02:00
|
|
|
|
|
2014-05-31 22:15:06 +02:00
|
|
|
|
(define (demo-os)
|
|
|
|
|
"Return the \"demo\" 'operating-system' structure."
|
|
|
|
|
(let* ((dir (dirname (assoc-ref (current-source-location) 'filename)))
|
|
|
|
|
(file (string-append dir "/demo-os.scm")))
|
|
|
|
|
(read-operating-system file)))
|
|
|
|
|
|
2014-04-05 22:40:16 +02:00
|
|
|
|
(define (qemu-jobs store system)
|
|
|
|
|
"Return a list of jobs that build QEMU images for SYSTEM."
|
|
|
|
|
(define (->alist drv)
|
2014-04-06 21:11:09 +02:00
|
|
|
|
`((derivation . ,(derivation-file-name drv))
|
2014-04-05 22:40:16 +02:00
|
|
|
|
(description . "Stand-alone QEMU image of the GNU system")
|
|
|
|
|
(long-description . "This is a demo stand-alone QEMU image of the GNU
|
|
|
|
|
system.")
|
|
|
|
|
(license . ,gpl3+)
|
|
|
|
|
(home-page . ,%guix-home-page-url)
|
|
|
|
|
(maintainers . ("bug-guix@gnu.org"))))
|
|
|
|
|
|
|
|
|
|
(define (->job name drv)
|
|
|
|
|
(let ((name (symbol-append name (string->symbol ".")
|
|
|
|
|
(string->symbol system))))
|
2014-04-05 22:57:06 +02:00
|
|
|
|
`(,name . ,(cut ->alist drv))))
|
2014-04-05 22:40:16 +02:00
|
|
|
|
|
2014-05-31 22:15:06 +02:00
|
|
|
|
(define MiB
|
|
|
|
|
(expt 2 20))
|
|
|
|
|
|
|
|
|
|
(if (member system '("x86_64-linux" "i686-linux"))
|
|
|
|
|
(list (->job 'qemu-image
|
|
|
|
|
(run-with-store store
|
monads: Move '%store-monad' and related procedures where they belong.
This turns (guix monads) into a generic module for monads, and moves the
store monad and related monadic procedures in their corresponding
module.
* guix/monads.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file, package-file, package->derivation,
package->cross-derivation, origin->derivation, imported-modules,
compiled, modules, built-derivations, run-with-store): Move to...
* guix/store.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file): ... here.
(%guile-for-build): New variable.
(run-with-store): Moved from monads.scm. Remove default value for
#:guile-for-build.
* guix/packages.scm (default-guile): Export.
(set-guile-for-build): New procedure.
(package-file, package->derivation, package->cross-derivation,
origin->derivation): Moved from monads.scm.
* guix/derivations.scm (%guile-for-build): Remove.
(imported-modules): Rename to...
(%imported-modules): ... this.
(compiled-modules): Rename to...
(%compiled-modules): ... this.
(built-derivations, imported-modules, compiled-modules): New
procedures.
* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm,
gnu/services/dmd.scm, gnu/services/networking.scm,
gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm,
gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm,
guix/gexp.scm, guix/git-download.scm, guix/profiles.scm,
guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly.
* guix/monad-repl.scm (default-guile-derivation): New procedure.
(store-monad-language, run-in-store): Use it.
* build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit
'set-guile-for-build' call.
* guix/scripts/archive.scm (derivation-from-expression): Likewise.
* guix/scripts/build.scm (options/resolve-packages): Likewise.
* guix/scripts/environment.scm (guix-environment): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* doc/guix.texi (The Store Monad): Adjust module names accordingly.
2015-01-14 13:34:52 +01:00
|
|
|
|
(mbegin %store-monad
|
|
|
|
|
(set-guile-for-build (default-guile))
|
|
|
|
|
(system-qemu-image (demo-os)
|
|
|
|
|
#:disk-image-size
|
|
|
|
|
(* 1400 MiB))))) ; 1.4 GiB
|
2014-05-31 22:15:06 +02:00
|
|
|
|
(->job 'usb-image
|
|
|
|
|
(run-with-store store
|
monads: Move '%store-monad' and related procedures where they belong.
This turns (guix monads) into a generic module for monads, and moves the
store monad and related monadic procedures in their corresponding
module.
* guix/monads.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file, package-file, package->derivation,
package->cross-derivation, origin->derivation, imported-modules,
compiled, modules, built-derivations, run-with-store): Move to...
* guix/store.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file): ... here.
(%guile-for-build): New variable.
(run-with-store): Moved from monads.scm. Remove default value for
#:guile-for-build.
* guix/packages.scm (default-guile): Export.
(set-guile-for-build): New procedure.
(package-file, package->derivation, package->cross-derivation,
origin->derivation): Moved from monads.scm.
* guix/derivations.scm (%guile-for-build): Remove.
(imported-modules): Rename to...
(%imported-modules): ... this.
(compiled-modules): Rename to...
(%compiled-modules): ... this.
(built-derivations, imported-modules, compiled-modules): New
procedures.
* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm,
gnu/services/dmd.scm, gnu/services/networking.scm,
gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm,
gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm,
guix/gexp.scm, guix/git-download.scm, guix/profiles.scm,
guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly.
* guix/monad-repl.scm (default-guile-derivation): New procedure.
(store-monad-language, run-in-store): Use it.
* build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit
'set-guile-for-build' call.
* guix/scripts/archive.scm (derivation-from-expression): Likewise.
* guix/scripts/build.scm (options/resolve-packages): Likewise.
* guix/scripts/environment.scm (guix-environment): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* doc/guix.texi (The Store Monad): Adjust module names accordingly.
2015-01-14 13:34:52 +01:00
|
|
|
|
(mbegin %store-monad
|
|
|
|
|
(set-guile-for-build (default-guile))
|
|
|
|
|
(system-disk-image installation-os
|
|
|
|
|
#:disk-image-size
|
|
|
|
|
(* 800 MiB))))))
|
2014-04-05 22:40:16 +02:00
|
|
|
|
'()))
|
|
|
|
|
|
2014-10-06 19:14:47 +02:00
|
|
|
|
(define job-name
|
|
|
|
|
;; Return the name of a package's job.
|
|
|
|
|
(compose string->symbol package-full-name))
|
|
|
|
|
|
|
|
|
|
(define package->job
|
|
|
|
|
(let ((base-packages
|
|
|
|
|
(delete-duplicates
|
|
|
|
|
(append-map (match-lambda
|
|
|
|
|
((_ package _ ...)
|
|
|
|
|
(match (package-transitive-inputs package)
|
|
|
|
|
(((_ inputs _ ...) ...)
|
|
|
|
|
inputs))))
|
|
|
|
|
%final-inputs))))
|
|
|
|
|
(lambda (store package system)
|
|
|
|
|
"Return a job for PACKAGE on SYSTEM, or #f if this combination is not
|
|
|
|
|
valid."
|
|
|
|
|
(cond ((member package base-packages)
|
|
|
|
|
#f)
|
2014-10-17 23:20:39 +02:00
|
|
|
|
((member system
|
|
|
|
|
(package-transitive-supported-systems package))
|
2014-10-06 19:14:47 +02:00
|
|
|
|
(package-job store (job-name package) package system))
|
|
|
|
|
(else
|
|
|
|
|
#f)))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Hydra entry point.
|
|
|
|
|
;;;
|
|
|
|
|
|
2012-11-18 18:35:26 +01:00
|
|
|
|
(define (hydra-jobs store arguments)
|
|
|
|
|
"Return Hydra jobs."
|
2013-09-08 12:10:25 +02:00
|
|
|
|
(define subset
|
|
|
|
|
(match (assoc-ref arguments 'subset)
|
|
|
|
|
("core" 'core) ; only build core packages
|
|
|
|
|
(_ 'all))) ; build everything
|
|
|
|
|
|
2013-07-16 13:42:34 +02:00
|
|
|
|
(define (cross-jobs system)
|
2014-03-25 13:55:56 +01:00
|
|
|
|
(define (from-32-to-64? target)
|
|
|
|
|
;; Return true if SYSTEM is 32-bit and TARGET is 64-bit.
|
|
|
|
|
;; This hacks prevents known-to-fail cross-builds from i686-linux to
|
|
|
|
|
;; mips64el-linux-gnuabi64.
|
|
|
|
|
(and (string-prefix? "i686-" system)
|
|
|
|
|
(string-suffix? "64" target)))
|
|
|
|
|
|
2014-05-29 23:32:21 +02:00
|
|
|
|
(define (same? target)
|
|
|
|
|
;; Return true if SYSTEM and TARGET are the same thing. This is so we
|
|
|
|
|
;; don't try to cross-compile to 'mips64el-linux-gnu' from
|
|
|
|
|
;; 'mips64el-linux'.
|
|
|
|
|
(string-contains target system))
|
|
|
|
|
|
|
|
|
|
(define (either proc1 proc2)
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(or (proc1 x) (proc2 x))))
|
|
|
|
|
|
2013-05-24 23:12:56 +02:00
|
|
|
|
(append-map (lambda (target)
|
|
|
|
|
(map (lambda (package)
|
|
|
|
|
(package-cross-job store (job-name package)
|
|
|
|
|
package target system))
|
|
|
|
|
%packages-to-cross-build))
|
2014-05-29 23:32:21 +02:00
|
|
|
|
(remove (either from-32-to-64? same?) %cross-targets)))
|
2013-05-24 23:12:56 +02:00
|
|
|
|
|
2012-11-25 17:12:46 +01:00
|
|
|
|
;; Return one job for each package, except bootstrap packages.
|
2014-10-06 19:14:47 +02:00
|
|
|
|
(append-map (lambda (system)
|
|
|
|
|
(case subset
|
|
|
|
|
((all)
|
|
|
|
|
;; Build everything.
|
|
|
|
|
(fold-packages (lambda (package result)
|
|
|
|
|
(let ((job (package->job store package
|
|
|
|
|
system)))
|
|
|
|
|
(if job
|
|
|
|
|
(cons job result)
|
|
|
|
|
result)))
|
|
|
|
|
(append (qemu-jobs store system)
|
|
|
|
|
(cross-jobs system))))
|
|
|
|
|
((core)
|
|
|
|
|
;; Build core packages only.
|
|
|
|
|
(append (map (lambda (package)
|
|
|
|
|
(package-job store (job-name package)
|
|
|
|
|
package system))
|
|
|
|
|
%core-packages)
|
|
|
|
|
(cross-jobs system)))
|
|
|
|
|
(else
|
|
|
|
|
(error "unknown subset" subset))))
|
|
|
|
|
%supported-systems))
|