2010-07-28 12:48:29 +00:00
|
|
|
{ nixpkgs ? /etc/nixos/nixpkgs
|
2010-03-29 11:46:17 +00:00
|
|
|
, hydraSrc ? {outPath = ./.; rev = 1234;}
|
2010-03-05 17:52:43 +00:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
rec {
|
2010-09-30 14:29:19 +00:00
|
|
|
tarball =
|
2010-09-30 14:29:15 +00:00
|
|
|
let pkgs = import nixpkgs {};
|
|
|
|
in with pkgs;
|
|
|
|
|
|
|
|
releaseTools.makeSourceTarball {
|
|
|
|
name = "hydra-tarball";
|
|
|
|
src = hydraSrc;
|
|
|
|
inherit officialRelease;
|
2011-01-14 10:43:47 +00:00
|
|
|
version = builtins.readFile ./version;
|
2010-09-30 15:02:42 +00:00
|
|
|
|
2011-01-14 12:53:54 +00:00
|
|
|
buildInputs =
|
|
|
|
[ perl libxslt dblatex tetex nukeReferences pkgconfig boehmgc ] ;
|
2010-09-30 15:02:42 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# TeX needs a writable font cache.
|
|
|
|
export VARTEXFONTS=$TMPDIR/texfonts
|
2011-01-14 14:04:46 +00:00
|
|
|
|
|
|
|
cp ${"${nixpkgs}/pkgs/build-support/fetchsvn/nix-prefetch-svn"} src/script
|
|
|
|
cp ${"${nixpkgs}/pkgs/build-support/fetchgit/nix-prefetch-git"} src/script
|
|
|
|
cp ${"${nixpkgs}/pkgs/build-support/fetchhg/nix-prefetch-hg"} src/script
|
2011-02-08 13:41:23 +00:00
|
|
|
cp ${"${nixpkgs}/pkgs/build-support/fetchbzr/nix-prefetch-bzr"} src/script
|
2010-09-30 15:02:42 +00:00
|
|
|
'';
|
2011-01-14 10:43:47 +00:00
|
|
|
|
2011-01-14 12:42:37 +00:00
|
|
|
configureFlags = "--with-nix=${nix}";
|
|
|
|
|
2011-01-14 10:48:50 +00:00
|
|
|
postDist = ''
|
2011-01-14 10:43:47 +00:00
|
|
|
cp doc/manual/manual.pdf $out
|
|
|
|
nuke-refs $out/manual.pdf
|
2011-01-17 09:32:29 +00:00
|
|
|
echo "doc-pdf manual $out/manual.pdf" >> $out/nix-support/hydra-build-products
|
2011-01-14 10:43:47 +00:00
|
|
|
'';
|
2010-09-30 14:29:15 +00:00
|
|
|
};
|
2010-03-05 17:52:43 +00:00
|
|
|
|
|
|
|
build =
|
|
|
|
{ system ? "x86_64-linux" }:
|
|
|
|
|
|
|
|
let pkgs = import nixpkgs {inherit system;}; in
|
|
|
|
|
|
|
|
with pkgs;
|
2008-11-28 16:13:06 +00:00
|
|
|
|
2010-03-05 17:52:43 +00:00
|
|
|
let nix = nixSqlite; in
|
|
|
|
|
2010-09-30 14:29:19 +00:00
|
|
|
releaseTools.nixBuild {
|
2010-09-30 15:09:34 +00:00
|
|
|
name = "hydra";
|
2010-09-30 14:29:19 +00:00
|
|
|
src = tarball;
|
|
|
|
configureFlags = "--with-nix=${nix}";
|
2010-03-05 17:52:43 +00:00
|
|
|
|
|
|
|
buildInputs =
|
2011-03-16 14:25:39 +00:00
|
|
|
[ perl makeWrapper libtool nix unzip nukeReferences pkgconfig boehmgc sqlite git mercurial subversion bazaar]
|
2010-03-05 17:52:43 +00:00
|
|
|
++ (import ./deps.nix) { inherit pkgs; };
|
|
|
|
|
|
|
|
hydraPath = stdenv.lib.concatStringsSep ":" (map (p: "${p}/bin") ( [
|
|
|
|
libxslt sqlite subversion openssh nix coreutils findutils
|
2011-02-08 13:41:23 +00:00
|
|
|
gzip bzip2 lzma gnutar unzip git mercurial gnused graphviz bazaar
|
2010-03-05 17:52:43 +00:00
|
|
|
] ++ ( if stdenv.isLinux then [rpm dpkg cdrkit] else [] )));
|
|
|
|
|
2010-09-30 14:29:19 +00:00
|
|
|
postInstall = ''
|
2010-03-05 17:52:43 +00:00
|
|
|
ensureDir $out/nix-support
|
2010-09-30 15:02:42 +00:00
|
|
|
nuke-refs $out/share/doc/hydra/manual/manual.pdf
|
2010-03-05 17:52:43 +00:00
|
|
|
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
wrapProgram $i \
|
|
|
|
--prefix PERL5LIB ':' $out/libexec/hydra/lib:$PERL5LIB \
|
|
|
|
--prefix PATH ':' $out/bin:$hydraPath \
|
|
|
|
--set HYDRA_RELEASE ${tarball.version} \
|
2010-10-18 10:34:54 +00:00
|
|
|
--set HYDRA_HOME $out/libexec/hydra \
|
2010-03-05 17:52:43 +00:00
|
|
|
--set NIX_RELEASE ${nix.name}
|
|
|
|
done
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Build of Hydra on ${system}";
|
|
|
|
};
|
2011-03-17 09:18:13 +00:00
|
|
|
succeedOnFailure = true;
|
|
|
|
keepBuildDirectory = true;
|
2010-03-05 17:52:43 +00:00
|
|
|
};
|
2010-03-10 15:48:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
tests =
|
|
|
|
{ nixos ? ../nixos, system ? "x86_64-linux" }:
|
|
|
|
|
|
|
|
let hydra = build { inherit system; }; in
|
|
|
|
|
|
|
|
with import "${nixos}/lib/testing.nix" { inherit nixpkgs system; services = null; };
|
|
|
|
|
|
|
|
{
|
2010-03-10 15:23:27 +00:00
|
|
|
|
2010-03-10 15:48:45 +00:00
|
|
|
install = simpleTest {
|
|
|
|
|
|
|
|
machine =
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{ services.postgresql.enable = true;
|
|
|
|
environment.systemPackages = [ hydra ];
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
|
|
|
$machine->waitForJob("postgresql");
|
|
|
|
|
|
|
|
# Initialise the database and the state.
|
|
|
|
$machine->mustSucceed
|
|
|
|
( "createdb -O root hydra",
|
|
|
|
, "psql hydra -f ${hydra}/share/hydra/sql/hydra-postgresql.sql"
|
|
|
|
, "mkdir /var/lib/hydra"
|
|
|
|
);
|
|
|
|
|
|
|
|
# Start the web interface.
|
|
|
|
#$machine->mustSucceed("HYDRA_DATA=/var/lib/hydra HYDRA_DBI='dbi:Pg:dbname=hydra;user=hydra;' hydra_server.pl >&2 &");
|
|
|
|
#$machine->waitForOpenPort("3000");
|
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-03-05 17:52:43 +00:00
|
|
|
}
|