2013-10-01 04:45:14 -07:00
|
|
|
/* Hydra job to build a tarball for Nixpkgs from a Git checkout. It
|
2009-03-09 10:49:13 -07:00
|
|
|
also builds the documentation and tests whether the Nix expressions
|
|
|
|
evaluate correctly. */
|
|
|
|
|
2016-01-19 12:25:08 -08:00
|
|
|
{ nixpkgs
|
|
|
|
, officialRelease
|
|
|
|
, pkgs ? import nixpkgs.outPath {}
|
|
|
|
, nix ? pkgs.nix
|
2019-07-10 02:45:52 -07:00
|
|
|
, lib-tests ? import ../../lib/tests/release.nix { inherit pkgs; }
|
2016-01-19 12:25:08 -08:00
|
|
|
}:
|
2009-03-09 10:49:13 -07:00
|
|
|
|
2015-10-23 04:04:10 -07:00
|
|
|
with pkgs;
|
2009-03-09 10:49:13 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
releaseTools.sourceTarball {
|
2009-03-09 10:49:13 -07:00
|
|
|
name = "nixpkgs-tarball";
|
|
|
|
src = nixpkgs;
|
|
|
|
|
2013-10-01 04:45:14 -07:00
|
|
|
inherit officialRelease;
|
2016-08-01 02:34:54 -07:00
|
|
|
version = pkgs.lib.fileContents ../../.version;
|
2019-05-29 12:28:33 -07:00
|
|
|
versionSuffix = "pre${
|
|
|
|
if nixpkgs ? lastModified
|
2020-04-02 09:01:45 -07:00
|
|
|
then builtins.substring 0 8 (nixpkgs.lastModifiedDate or nixpkgs.lastModified)
|
2020-02-10 07:25:33 -08:00
|
|
|
else toString nixpkgs.revCount}.${nixpkgs.shortRev or "dirty"}";
|
2012-06-03 21:12:17 -07:00
|
|
|
|
2020-03-24 08:31:51 -07:00
|
|
|
buildInputs = [ nix.out jq lib-tests pkgs.brotli ];
|
2009-03-09 10:49:13 -07:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
eval "$preConfigure"
|
2012-06-03 21:12:17 -07:00
|
|
|
releaseName=nixpkgs-$VERSION$VERSION_SUFFIX
|
2013-10-01 04:45:14 -07:00
|
|
|
echo -n $VERSION_SUFFIX > .version-suffix
|
2020-02-10 07:25:33 -08:00
|
|
|
echo -n ${nixpkgs.rev or nixpkgs.shortRev or "dirty"} > .git-revision
|
2009-03-09 10:49:13 -07:00
|
|
|
echo "release name is $releaseName"
|
2017-10-10 20:06:45 -07:00
|
|
|
echo "git-revision is $(cat .git-revision)"
|
2009-03-09 10:49:13 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
dontBuild = false;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkPhase = ''
|
2020-03-24 08:31:51 -07:00
|
|
|
set -o pipefail
|
|
|
|
|
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
|
2015-12-02 06:58:30 -08:00
|
|
|
export NIX_PATH=nixpkgs=$TMPDIR/barf.nix
|
2016-12-15 04:06:05 -08:00
|
|
|
opts=(--option build-users-group "")
|
2012-05-13 12:10:57 -07:00
|
|
|
nix-store --init
|
2012-11-29 05:10:49 -08:00
|
|
|
|
2015-12-02 06:58:30 -08:00
|
|
|
echo 'abort "Illegal use of <nixpkgs> in Nixpkgs."' > $TMPDIR/barf.nix
|
|
|
|
|
2018-07-04 08:21:33 -07:00
|
|
|
# Make sure that Nixpkgs does not use <nixpkgs>.
|
2017-12-07 06:57:06 -08:00
|
|
|
badFiles=$(find pkgs -type f -name '*.nix' -print | xargs grep -l '^[^#]*<nixpkgs\/' || true)
|
|
|
|
if [[ -n $badFiles ]]; then
|
2015-12-02 06:58:30 -08:00
|
|
|
echo "Nixpkgs is not allowed to use <nixpkgs> to refer to itself."
|
2017-12-07 06:57:06 -08:00
|
|
|
echo "The offending files: $badFiles"
|
2015-12-02 06:58:30 -08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2014-04-19 15:07:14 -07:00
|
|
|
# Make sure that derivation paths do not depend on the Nixpkgs path.
|
|
|
|
mkdir $TMPDIR/foo
|
|
|
|
ln -s $(readlink -f .) $TMPDIR/foo/bar
|
2016-03-13 11:24:55 -07:00
|
|
|
p1=$(nix-instantiate ./. --dry-run -A firefox --show-trace)
|
2018-09-03 05:23:35 -07:00
|
|
|
p2=$(nix-instantiate $TMPDIR/foo/bar --dry-run -A firefox --show-trace)
|
2014-04-19 15:07:14 -07:00
|
|
|
if [ "$p1" != "$p2" ]; then
|
|
|
|
echo "Nixpkgs evaluation depends on Nixpkgs path ($p1 vs $p2)!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-10-09 14:21:57 -07:00
|
|
|
# Check that all-packages.nix evaluates on a number of platforms without any warnings.
|
2015-03-06 04:16:10 -08:00
|
|
|
for platform in i686-linux x86_64-linux x86_64-darwin; do
|
2015-12-02 06:58:30 -08:00
|
|
|
header "checking Nixpkgs on $platform"
|
2015-10-09 14:21:57 -07:00
|
|
|
|
2016-11-30 06:21:30 -08:00
|
|
|
nix-env -f . \
|
2009-08-26 10:09:02 -07:00
|
|
|
--show-trace --argstr system "$platform" \
|
2016-12-15 04:06:05 -08:00
|
|
|
-qa --drv-path --system-filter \* --system \
|
|
|
|
"''${opts[@]}" 2>&1 >/dev/null | tee eval-warnings.log
|
2015-10-09 14:21:57 -07:00
|
|
|
|
|
|
|
if [ -s eval-warnings.log ]; then
|
2015-12-02 06:58:30 -08:00
|
|
|
echo "Nixpkgs on $platform evaluated with warnings, aborting"
|
2015-10-09 14:21:57 -07:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
rm eval-warnings.log
|
|
|
|
|
2016-11-30 06:21:30 -08:00
|
|
|
nix-env -f . \
|
2015-05-12 05:29:16 -07:00
|
|
|
--show-trace --argstr system "$platform" \
|
2016-12-15 04:06:05 -08:00
|
|
|
-qa --drv-path --system-filter \* --system --meta --xml \
|
|
|
|
"''${opts[@]}" > /dev/null
|
2009-03-09 10:49:13 -07:00
|
|
|
done
|
2010-08-19 07:33:44 -07:00
|
|
|
|
|
|
|
header "checking eval-release.nix"
|
2014-04-19 15:07:14 -07:00
|
|
|
nix-instantiate --eval --strict --show-trace ./maintainers/scripts/eval-release.nix > /dev/null
|
2014-02-19 04:01:33 -08:00
|
|
|
|
|
|
|
header "checking find-tarballs.nix"
|
2018-07-04 08:21:33 -07:00
|
|
|
nix-instantiate --readonly-mode --eval --strict --show-trace --json \
|
2015-12-16 04:59:02 -08:00
|
|
|
./maintainers/scripts/find-tarballs.nix \
|
|
|
|
--arg expr 'import ./maintainers/scripts/all-tarballs.nix' > $TMPDIR/tarballs.json
|
|
|
|
nrUrls=$(jq -r '.[].url' < $TMPDIR/tarballs.json | wc -l)
|
|
|
|
echo "found $nrUrls URLs"
|
|
|
|
if [ "$nrUrls" -lt 10000 ]; then
|
|
|
|
echo "suspiciously low number of URLs"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-03-24 08:31:51 -07:00
|
|
|
|
|
|
|
header "generating packages.json"
|
|
|
|
mkdir -p $out/nix-support
|
2020-03-29 11:57:50 -07:00
|
|
|
echo -n '{"version":2,"packages":' > tmp
|
2020-03-24 08:31:51 -07:00
|
|
|
nix-env -f . -I nixpkgs=${src} -qa --json --arg config 'import ${./packages-config.nix}' "''${opts[@]}" >> tmp
|
|
|
|
echo -n '}' >> tmp
|
|
|
|
packages=$out/packages.json.br
|
2020-03-29 11:00:53 -07:00
|
|
|
< tmp sed "s|$(pwd)/||g" | jq -c | brotli -9 > $packages
|
2020-03-24 08:31:51 -07:00
|
|
|
|
|
|
|
echo "file json-br $packages" >> $out/nix-support/hydra-build-products
|
2009-03-09 10:49:13 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
distPhase = ''
|
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
|
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
|
|
|
'';
|
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
|
|
|
}
|