2012-03-13 10:03:32 +00:00
|
|
|
{ hydraSrc ? { outPath = ./.; revCount = 1234; gitTag = "abcdef"; }
|
2010-03-05 17:52:43 +00:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2013-07-01 17:37:14 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
pkgs = import <nixpkgs> {};
|
|
|
|
|
|
|
|
genAttrs' = pkgs.lib.genAttrs [ "x86_64-linux" "i686-linux" ];
|
|
|
|
|
|
|
|
in rec {
|
2013-01-23 14:47:42 +00:00
|
|
|
|
2013-01-22 13:41:02 +00:00
|
|
|
tarball =
|
2012-03-13 10:03:32 +00:00
|
|
|
with import <nixpkgs> { };
|
2011-08-19 15:43:43 +00:00
|
|
|
|
2010-09-30 14:29:15 +00:00
|
|
|
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 =
|
2013-01-23 14:47:42 +00:00
|
|
|
[ perl libxslt dblatex tetex nukeReferences pkgconfig boehmgc git openssl ];
|
2011-12-05 14:53:23 +00:00
|
|
|
|
|
|
|
versionSuffix = if officialRelease then "" else "pre${toString hydraSrc.revCount}-${hydraSrc.gitTag}";
|
2010-09-30 15:02:42 +00:00
|
|
|
|
2013-07-19 12:36:52 +00:00
|
|
|
preHook = ''
|
2010-09-30 15:02:42 +00:00
|
|
|
# TeX needs a writable font cache.
|
|
|
|
export VARTEXFONTS=$TMPDIR/texfonts
|
2013-08-12 15:23:33 +00:00
|
|
|
|
|
|
|
addToSearchPath PATH $(pwd)/src/script
|
|
|
|
addToSearchPath PATH $(pwd)/src/c
|
|
|
|
addToSearchPath PERL5LIB $(pwd)/src/lib
|
2010-09-30 15:02:42 +00:00
|
|
|
'';
|
2011-01-14 10:43:47 +00:00
|
|
|
|
2011-07-04 15:36:38 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-nix=${nix}"
|
|
|
|
"--with-docbook-xsl=${docbook_xsl}/xml/xsl/docbook"
|
|
|
|
];
|
2011-01-14 12:42:37 +00:00
|
|
|
|
2011-01-14 10:48:50 +00:00
|
|
|
postDist = ''
|
2011-07-04 20:11:51 +00:00
|
|
|
make -C doc/manual install prefix="$out"
|
2011-07-04 14:48:44 +00:00
|
|
|
nuke-refs "$out/share/doc/hydra/manual.pdf"
|
|
|
|
|
2011-10-12 15:04:13 +00:00
|
|
|
echo "doc manual $out/share/doc/hydra manual.html" >> \
|
2011-07-04 14:48:44 +00:00
|
|
|
"$out/nix-support/hydra-build-products"
|
|
|
|
echo "doc-pdf manual $out/share/doc/hydra/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
|
|
|
|
2013-01-23 14:47:42 +00:00
|
|
|
|
2013-07-01 17:37:14 +00:00
|
|
|
build = genAttrs' (system:
|
2010-03-05 17:52:43 +00:00
|
|
|
|
2013-07-01 17:37:14 +00:00
|
|
|
with import <nixpkgs> { inherit system; };
|
2008-11-28 16:13:06 +00:00
|
|
|
|
2013-05-24 19:26:47 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
nix = nixUnstable;
|
|
|
|
|
|
|
|
perlDeps = buildEnv {
|
|
|
|
name = "hydra-perl-deps";
|
|
|
|
paths = with perlPackages;
|
2013-06-02 21:27:46 +00:00
|
|
|
[ ModulePluggable
|
|
|
|
CatalystAuthenticationStoreDBIxClass
|
2013-06-13 13:13:52 +00:00
|
|
|
CatalystDispatchTypeRegex
|
2013-05-24 19:26:47 +00:00
|
|
|
CatalystPluginAccessLog
|
|
|
|
CatalystPluginAuthorizationRoles
|
|
|
|
CatalystPluginCaptcha
|
|
|
|
CatalystPluginSessionStateCookie
|
|
|
|
CatalystPluginSessionStoreFastMmap
|
|
|
|
CatalystPluginStackTrace
|
2013-06-13 13:13:52 +00:00
|
|
|
CatalystTraitForRequestProxyBase
|
2013-05-24 19:26:47 +00:00
|
|
|
CatalystViewDownload
|
|
|
|
CatalystViewJSON
|
|
|
|
CatalystViewTT
|
|
|
|
CatalystXScriptServerStarman
|
2013-06-17 16:34:21 +00:00
|
|
|
CatalystActionREST
|
2013-05-24 19:26:47 +00:00
|
|
|
CryptRandPasswd
|
|
|
|
DBDPg
|
|
|
|
DBDSQLite
|
|
|
|
DataDump
|
|
|
|
DateTime
|
|
|
|
DigestSHA1
|
|
|
|
EmailSender
|
|
|
|
FileSlurp
|
2013-06-27 16:56:31 +00:00
|
|
|
LWP
|
|
|
|
LWPProtocolHttps
|
2013-05-24 19:26:47 +00:00
|
|
|
IOCompress
|
|
|
|
IPCRun
|
|
|
|
JSONXS
|
|
|
|
PadWalker
|
|
|
|
CatalystDevel
|
|
|
|
Readonly
|
|
|
|
SQLSplitStatement
|
|
|
|
Starman
|
|
|
|
SysHostnameLong
|
|
|
|
TestMore
|
|
|
|
TextDiff
|
|
|
|
TextTable
|
|
|
|
XMLSimple
|
|
|
|
nix git
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
2010-03-05 17:52:43 +00:00
|
|
|
|
2010-09-30 14:29:19 +00:00
|
|
|
releaseTools.nixBuild {
|
2010-09-30 15:09:34 +00:00
|
|
|
name = "hydra";
|
2013-01-22 13:41:02 +00:00
|
|
|
src = tarball;
|
2010-09-30 14:29:19 +00:00
|
|
|
configureFlags = "--with-nix=${nix}";
|
2010-03-05 17:52:43 +00:00
|
|
|
|
|
|
|
buildInputs =
|
2013-05-24 19:26:47 +00:00
|
|
|
[ makeWrapper libtool unzip nukeReferences pkgconfig boehmgc sqlite
|
|
|
|
gitAndTools.topGit mercurial subversion bazaar openssl bzip2
|
|
|
|
guile # optional, for Guile + Guix support
|
2013-06-02 21:27:46 +00:00
|
|
|
perlDeps perl
|
2013-05-24 19:26:47 +00:00
|
|
|
];
|
2010-03-05 17:52:43 +00:00
|
|
|
|
2013-01-23 14:47:42 +00:00
|
|
|
hydraPath = lib.makeSearchPath "bin" (
|
|
|
|
[ libxslt sqlite subversion openssh nix coreutils findutils
|
|
|
|
gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial gnused graphviz bazaar
|
|
|
|
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] );
|
2010-03-05 17:52:43 +00:00
|
|
|
|
2013-08-16 14:15:09 +00:00
|
|
|
preCheck = ''
|
|
|
|
patchShebangs .
|
|
|
|
export LOGNAME=${LOGNAME:-foo}
|
|
|
|
'';
|
2011-11-30 17:03:50 +00:00
|
|
|
|
2010-09-30 14:29:19 +00:00
|
|
|
postInstall = ''
|
2013-01-23 14:47:42 +00:00
|
|
|
mkdir -p $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
|
|
|
|
''; # */
|
2011-08-19 15:28:32 +00:00
|
|
|
|
2013-01-23 14:47:42 +00:00
|
|
|
meta.description = "Build of Hydra on ${system}";
|
2013-07-01 17:37:14 +00:00
|
|
|
});
|
2010-03-10 15:48:45 +00:00
|
|
|
|
|
|
|
|
2013-07-01 17:37:14 +00:00
|
|
|
tests.install = genAttrs' (system:
|
2012-03-13 10:03:32 +00:00
|
|
|
with import <nixos/lib/testing.nix> { inherit system; };
|
2013-07-01 17:37:14 +00:00
|
|
|
let hydra = builtins.getAttr system build; in # build.${system}
|
|
|
|
simpleTest {
|
|
|
|
machine =
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{ services.postgresql.enable = true;
|
|
|
|
services.postgresql.package = pkgs.postgresql92;
|
|
|
|
environment.systemPackages = [ hydra ];
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
|
|
|
$machine->waitForJob("postgresql");
|
|
|
|
|
|
|
|
# Initialise the database and the state.
|
|
|
|
$machine->mustSucceed
|
|
|
|
( "createdb -O root hydra",
|
|
|
|
, "psql hydra -f ${hydra}/libexec/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 >&2 &");
|
|
|
|
$machine->waitForOpenPort("3000");
|
|
|
|
'';
|
|
|
|
});
|
2010-03-10 15:48:45 +00:00
|
|
|
|
2013-06-17 16:34:21 +00:00
|
|
|
tests.api = genAttrs' (system:
|
|
|
|
with import <nixos/lib/testing.nix> { inherit system; };
|
2013-08-21 13:10:40 +00:00
|
|
|
let hydra = builtins.getAttr system build; in # build."${system}"
|
2013-06-17 16:34:21 +00:00
|
|
|
simpleTest {
|
|
|
|
machine =
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{ services.postgresql.enable = true;
|
|
|
|
services.postgresql.package = pkgs.postgresql92;
|
|
|
|
environment.systemPackages = [ hydra pkgs.perlPackages.LWP pkgs.perlPackages.JSON ];
|
2013-07-03 20:42:10 +00:00
|
|
|
virtualisation.memorySize = 2047;
|
2013-08-21 13:10:40 +00:00
|
|
|
boot.kernelPackages = pkgs.linuxPackages_3_10;
|
2013-06-17 16:34:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
|
|
|
$machine->waitForJob("postgresql");
|
|
|
|
|
|
|
|
# Initialise the database and the state.
|
|
|
|
$machine->mustSucceed
|
|
|
|
( "createdb -O root hydra"
|
|
|
|
, "psql hydra -f ${hydra}/libexec/hydra/sql/hydra-postgresql.sql"
|
|
|
|
, "mkdir /var/lib/hydra"
|
|
|
|
, "echo \"insert into Users(userName, emailAddress, password) values('root', 'e.dolstra\@tudelft.nl', '\$(echo -n foobar | sha1sum | cut -c1-40)');\" | psql hydra"
|
|
|
|
, "echo \"insert into UserRoles(userName, role) values('root', 'admin');\" | psql hydra"
|
|
|
|
, "mkdir /run/jobset"
|
|
|
|
, "chmod 755 /run/jobset"
|
|
|
|
, "cp ${./tests/api-test.nix} /run/jobset/default.nix"
|
|
|
|
, "chmod 644 /run/jobset/default.nix"
|
|
|
|
);
|
|
|
|
|
|
|
|
# Start the web interface.
|
|
|
|
$machine->mustSucceed("NIX_STORE_DIR=/run/nix NIX_LOG_DIR=/run/nix/var/log/nix NIX_STATE_DIR=/run/nix/var/nix HYDRA_DATA=/var/lib/hydra HYDRA_DBI='dbi:Pg:dbname=hydra;user=root;' LOGNAME=root DBIC_TRACE=1 hydra-server -d >&2 &");
|
|
|
|
$machine->waitForOpenPort("3000");
|
|
|
|
|
|
|
|
$machine->mustSucceed("perl ${./tests/api-test.pl} >&2");
|
|
|
|
'';
|
|
|
|
});
|
2010-03-05 17:52:43 +00:00
|
|
|
}
|