2009-03-09 10:49:13 -07:00
|
|
|
/* Hydra job to build a tarball for Nixpkgs from a SVN checkout. It
|
|
|
|
also builds the documentation and tests whether the Nix expressions
|
|
|
|
evaluate correctly. */
|
|
|
|
|
2013-03-26 03:57:44 -07:00
|
|
|
{ nixpkgs, officialRelease }:
|
2009-03-09 10:49:13 -07:00
|
|
|
|
|
|
|
with import nixpkgs.outPath {};
|
|
|
|
|
2012-06-03 21:12:17 -07:00
|
|
|
releaseTools.sourceTarball {
|
2009-03-09 10:49:13 -07:00
|
|
|
name = "nixpkgs-tarball";
|
|
|
|
src = nixpkgs;
|
|
|
|
inherit officialRelease;
|
|
|
|
|
2012-06-03 21:12:17 -07:00
|
|
|
version = builtins.readFile ../../VERSION;
|
|
|
|
versionSuffix = if officialRelease then "" else "pre${toString nixpkgs.revCount}_${nixpkgs.shortRev}";
|
|
|
|
|
2009-03-09 10:49:13 -07:00
|
|
|
buildInputs = [
|
|
|
|
lzma
|
|
|
|
libxml2 # Needed for the release notes.
|
|
|
|
libxslt
|
|
|
|
w3m
|
2009-11-18 04:22:24 -08:00
|
|
|
nix # Needed to check whether the expressions are valid.
|
2009-07-10 06:41:47 -07:00
|
|
|
tetex dblatex
|
2009-03-09 10:49:13 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
eval "$preConfigure"
|
2012-06-03 21:12:17 -07:00
|
|
|
releaseName=nixpkgs-$VERSION$VERSION_SUFFIX
|
2009-03-09 10:49:13 -07:00
|
|
|
echo "release name is $releaseName"
|
|
|
|
echo $releaseName > relname
|
|
|
|
'';
|
|
|
|
|
|
|
|
dontBuild = false;
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
echo "building docs..."
|
2009-07-10 06:41:47 -07:00
|
|
|
export VARTEXFONTS=$TMPDIR/texfonts
|
|
|
|
make -C doc docbookxsl=${docbook5_xsl}/xml/xsl/docbook
|
2009-03-09 10:49:13 -07:00
|
|
|
ln -s doc/NEWS.txt NEWS
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkPhase = ''
|
2012-05-13 12:10:57 -07:00
|
|
|
export NIX_DB_DIR=$TMPDIR
|
2012-05-15 07:37:24 -07:00
|
|
|
export NIX_STATE_DIR=$TMPDIR
|
2012-05-13 12:10:57 -07:00
|
|
|
nix-store --init
|
2012-11-29 05:10:49 -08:00
|
|
|
|
2009-03-31 06:03:50 -07:00
|
|
|
# Run the regression tests in `lib'.
|
2013-08-23 00:02:10 -07:00
|
|
|
res="$(nix-instantiate --eval-only --strict --show-trace pkgs/lib/tests.nix)"
|
2010-05-18 01:39:31 -07:00
|
|
|
if test "$res" != "[ ]"; then
|
2009-04-03 05:21:06 -07:00
|
|
|
echo "regression tests for lib failed, got: $res"
|
2009-03-31 06:03:50 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
2012-11-29 05:10:49 -08:00
|
|
|
|
2009-03-09 10:49:13 -07:00
|
|
|
# Check that all-packages.nix evaluates on a number of platforms.
|
2013-10-01 04:01:49 -07:00
|
|
|
for platform in i686-linux x86_64-linux x86_64-darwin i686-freebsd x86_64-freebsd; do
|
2009-03-09 10:49:13 -07:00
|
|
|
header "checking pkgs/top-level/all-packages.nix on $platform"
|
|
|
|
nix-env --readonly-mode -f pkgs/top-level/all-packages.nix \
|
2009-08-26 10:09:02 -07:00
|
|
|
--show-trace --argstr system "$platform" \
|
2012-06-03 21:12:17 -07:00
|
|
|
-qa \* --drv-path --system-filter \* --system --meta --xml > /dev/null
|
2009-03-09 10:49:13 -07:00
|
|
|
stopNest
|
|
|
|
done
|
2010-08-19 07:33:44 -07:00
|
|
|
|
|
|
|
header "checking eval-release.nix"
|
2013-08-23 00:02:10 -07:00
|
|
|
nix-instantiate --eval-only --strict --xml --show-trace ./maintainers/scripts/eval-release.nix > $TMPDIR/out.xml
|
2010-08-19 07:33:44 -07:00
|
|
|
xmllint --noout $TMPDIR/out.xml
|
|
|
|
stopNest
|
2009-03-09 10:49:13 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
distPhase = ''
|
2010-02-02 07:02:29 -08:00
|
|
|
find . -name "\.svn" -exec rm -rvf {} \; -prune
|
2012-11-29 05:10:49 -08:00
|
|
|
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/tarballs
|
2009-03-09 10:49:13 -07:00
|
|
|
mkdir ../$releaseName
|
|
|
|
cp -prd . ../$releaseName
|
2012-04-14 07:19:13 -07:00
|
|
|
echo nixpkgs > ../$releaseName/channel-name
|
2013-01-30 03:51:29 -08:00
|
|
|
(cd .. && tar cfa $out/tarballs/$releaseName.tar.xz $releaseName) || false
|
2009-03-09 10:49:13 -07:00
|
|
|
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/release-notes
|
2009-03-09 10:49:13 -07:00
|
|
|
cp doc/NEWS.html $out/release-notes/index.html
|
|
|
|
cp doc/style.css $out/release-notes/
|
|
|
|
echo "doc release-notes $out/release-notes" >> $out/nix-support/hydra-build-products
|
|
|
|
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/manual
|
2009-03-09 10:49:13 -07:00
|
|
|
cp doc/manual.html $out/manual/index.html
|
|
|
|
cp doc/style.css $out/manual/
|
|
|
|
echo "doc manual $out/manual" >> $out/nix-support/hydra-build-products
|
2009-07-10 06:41:47 -07:00
|
|
|
|
|
|
|
cp doc/manual.pdf $out/manual.pdf
|
|
|
|
echo "doc-pdf manual $out/manual.pdf" >> $out/nix-support/hydra-build-products
|
2009-03-09 10:49:13 -07:00
|
|
|
'';
|
2009-07-08 08:56:05 -07:00
|
|
|
|
|
|
|
meta = {
|
2010-01-29 04:26:12 -08:00
|
|
|
maintainers = [ lib.maintainers.all ];
|
2009-07-08 08:56:05 -07:00
|
|
|
};
|
2009-03-09 10:49:13 -07:00
|
|
|
}
|