2013-03-26 10:02:29 +00:00
|
|
|
/* This file defines the builds that constitute the Nixpkgs.
|
|
|
|
Everything defined here ends up in the Nixpkgs channel. Individual
|
|
|
|
jobs can be tested by running:
|
|
|
|
|
|
|
|
$ nix-build pkgs/top-level/release.nix -A <jobname>.<system>
|
|
|
|
|
|
|
|
e.g.
|
|
|
|
|
|
|
|
$ nix-build pkgs/top-level/release.nix -A coreutils.x86_64-linux
|
2010-04-19 15:21:52 +01:00
|
|
|
*/
|
2017-03-23 23:18:43 +00:00
|
|
|
{ nixpkgs ? { outPath = (import ../../lib).cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
|
2013-03-26 10:57:44 +00:00
|
|
|
, officialRelease ? false
|
2017-08-03 13:09:30 +01:00
|
|
|
# The platforms for which we build Nixpkgs.
|
2017-08-06 09:53:26 +01:00
|
|
|
, supportedSystems ? [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]
|
2017-08-03 13:09:30 +01:00
|
|
|
, limitedSupportedSystems ? [ "i686-linux" ]
|
|
|
|
# Strip most of attributes when evaluating to spare memory usage
|
|
|
|
, scrubJobs ? true
|
|
|
|
# Attributes passed to nixpkgs. Don't build packages marked as unfree.
|
|
|
|
, nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
|
2013-03-26 10:57:44 +00:00
|
|
|
}:
|
|
|
|
|
2017-02-27 16:20:25 +00:00
|
|
|
with import ./release-lib.nix { inherit supportedSystems scrubJobs nixpkgsArgs; };
|
2008-11-28 10:56:36 +00:00
|
|
|
|
2013-03-26 10:57:44 +00:00
|
|
|
let
|
2017-08-03 13:09:30 +01:00
|
|
|
|
|
|
|
systemsWithAnySupport = supportedSystems ++ limitedSupportedSystems;
|
|
|
|
|
2013-03-26 10:57:44 +00:00
|
|
|
jobs =
|
2016-10-12 17:11:13 +01:00
|
|
|
{ tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; };
|
2013-03-26 10:57:44 +00:00
|
|
|
|
2016-03-24 16:36:26 +00:00
|
|
|
metrics = import ./metrics.nix { inherit pkgs nixpkgs; };
|
|
|
|
|
2014-08-24 10:02:23 +01:00
|
|
|
manual = import ../../doc;
|
2017-04-25 01:12:43 +01:00
|
|
|
lib-tests = import ../../lib/tests/release.nix { inherit pkgs; };
|
2014-08-24 10:02:23 +01:00
|
|
|
|
2017-04-10 17:29:11 +01:00
|
|
|
darwin-tested = pkgs.releaseTools.aggregate
|
|
|
|
{ name = "nixpkgs-darwin-${jobs.tarball.version}";
|
|
|
|
meta.description = "Release-critical builds for the Nixpkgs darwin channel";
|
|
|
|
constituents =
|
|
|
|
[ jobs.tarball
|
|
|
|
jobs.cabal2nix.x86_64-darwin
|
2017-09-18 18:48:16 +01:00
|
|
|
jobs.emacs.x86_64-darwin
|
|
|
|
jobs.ghc.x86_64-darwin
|
|
|
|
jobs.git.x86_64-darwin
|
|
|
|
jobs.go.x86_64-darwin
|
|
|
|
jobs.mysql.x86_64-darwin
|
|
|
|
jobs.nix-repl.x86_64-darwin
|
|
|
|
jobs.nix.x86_64-darwin
|
|
|
|
jobs.nox.x86_64-darwin
|
2017-10-13 23:50:50 +01:00
|
|
|
jobs.nix-info.x86_64-darwin
|
2017-10-17 14:51:51 +01:00
|
|
|
jobs.nix-info-tested.x86_64-darwin
|
2017-09-18 18:48:16 +01:00
|
|
|
jobs.openssh.x86_64-darwin
|
|
|
|
jobs.openssl.x86_64-darwin
|
|
|
|
jobs.postgresql.x86_64-darwin
|
2017-04-10 17:29:11 +01:00
|
|
|
jobs.python.x86_64-darwin
|
2017-09-18 18:48:16 +01:00
|
|
|
jobs.python3.x86_64-darwin
|
|
|
|
jobs.ruby.x86_64-darwin
|
2017-04-10 17:29:11 +01:00
|
|
|
jobs.rustc.x86_64-darwin
|
2017-09-18 18:48:16 +01:00
|
|
|
jobs.stdenv.x86_64-darwin
|
|
|
|
jobs.vim.x86_64-darwin
|
|
|
|
|
|
|
|
jobs.tests.cc-wrapper.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-clang.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-libcxx.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-clang-39.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-libcxx-39.x86_64-darwin
|
|
|
|
jobs.tests.stdenv-inputs.x86_64-darwin
|
2017-08-03 23:18:59 +01:00
|
|
|
jobs.tests.macOSSierraShared.x86_64-darwin
|
2017-04-10 17:29:11 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2016-10-12 17:11:13 +01:00
|
|
|
unstable = pkgs.releaseTools.aggregate
|
|
|
|
{ name = "nixpkgs-${jobs.tarball.version}";
|
|
|
|
meta.description = "Release-critical builds for the Nixpkgs unstable channel";
|
|
|
|
constituents =
|
|
|
|
[ jobs.tarball
|
|
|
|
jobs.metrics
|
|
|
|
jobs.manual
|
2017-04-25 01:12:43 +01:00
|
|
|
jobs.lib-tests
|
2016-10-12 17:11:13 +01:00
|
|
|
jobs.stdenv.x86_64-linux
|
|
|
|
jobs.stdenv.x86_64-darwin
|
|
|
|
jobs.linux.x86_64-linux
|
|
|
|
jobs.python.x86_64-linux
|
|
|
|
jobs.python.x86_64-darwin
|
|
|
|
jobs.python3.x86_64-linux
|
|
|
|
jobs.python3.x86_64-darwin
|
|
|
|
# Many developers use nix-repl
|
|
|
|
jobs.nix-repl.x86_64-linux
|
|
|
|
jobs.nix-repl.x86_64-darwin
|
|
|
|
# Needed by travis-ci to test PRs
|
|
|
|
jobs.nox.x86_64-linux
|
|
|
|
jobs.nox.x86_64-darwin
|
2017-10-13 23:50:50 +01:00
|
|
|
# Needed for support
|
|
|
|
jobs.nix-info.x86_64-linux
|
|
|
|
jobs.nix-info.x86_64-darwin
|
2017-10-17 14:51:51 +01:00
|
|
|
jobs.nix-info-tested.x86_64-linux
|
|
|
|
jobs.nix-info-tested.x86_64-darwin
|
2016-10-12 17:11:13 +01:00
|
|
|
# Ensure that X11/GTK+ are in order.
|
|
|
|
jobs.thunderbird.x86_64-linux
|
|
|
|
# Ensure that basic stuff works on darwin
|
|
|
|
jobs.git.x86_64-darwin
|
|
|
|
jobs.mysql.x86_64-darwin
|
|
|
|
jobs.vim.x86_64-darwin
|
2018-04-23 22:51:33 +01:00
|
|
|
# Ensure that UI stuff works on darwin
|
|
|
|
jobs.inkscape.x86_64-darwin
|
|
|
|
jobs.qt5.qtmultimedia.x86_64-darwin
|
2017-09-18 18:48:16 +01:00
|
|
|
|
|
|
|
jobs.tests.cc-wrapper.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-clang.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-clang.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-libcxx.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-libcxx.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-clang-39.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-clang-39.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-libcxx-39.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-libcxx-39.x86_64-darwin
|
2018-02-19 04:37:38 +00:00
|
|
|
jobs.tests.cc-wrapper-clang-4.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-clang-4.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-libcxx-4.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-libcxx-4.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-clang-5.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-clang-5.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-libcxx-5.x86_64-linux
|
2018-02-19 19:01:42 +00:00
|
|
|
jobs.tests.cc-wrapper-libcxx-6.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-clang-6.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-clang-6.x86_64-darwin
|
|
|
|
jobs.tests.cc-wrapper-libcxx-6.x86_64-linux
|
|
|
|
jobs.tests.cc-wrapper-libcxx-6.x86_64-darwin
|
2017-11-30 19:10:41 +00:00
|
|
|
jobs.tests.cc-multilib-gcc.x86_64-linux
|
|
|
|
jobs.tests.cc-multilib-clang.x86_64-linux
|
2017-09-18 18:48:16 +01:00
|
|
|
jobs.tests.stdenv-inputs.x86_64-linux
|
|
|
|
jobs.tests.stdenv-inputs.x86_64-darwin
|
|
|
|
jobs.tests.macOSSierraShared.x86_64-darwin
|
2017-04-25 01:12:43 +01:00
|
|
|
] ++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools;
|
2016-10-12 17:11:13 +01:00
|
|
|
};
|
2017-08-06 11:35:34 +01:00
|
|
|
|
|
|
|
stdenvBootstrapTools = with lib;
|
|
|
|
genAttrs systemsWithAnySupport
|
|
|
|
(system: {
|
2017-06-26 21:56:03 +01:00
|
|
|
inherit
|
|
|
|
(import ../stdenv/linux/make-bootstrap-tools.nix {
|
|
|
|
localSystem = { inherit system; };
|
|
|
|
})
|
2017-08-06 11:35:34 +01:00
|
|
|
dist test;
|
|
|
|
})
|
|
|
|
# darwin is special in this
|
|
|
|
// optionalAttrs (builtins.elem "x86_64-darwin" systemsWithAnySupport) {
|
|
|
|
x86_64-darwin =
|
|
|
|
let
|
|
|
|
bootstrap = import ../stdenv/darwin/make-bootstrap-tools.nix { system = "x86_64-darwin"; };
|
|
|
|
in {
|
|
|
|
# Lightweight distribution and test
|
|
|
|
inherit (bootstrap) dist test;
|
|
|
|
# Test a full stdenv bootstrap from the bootstrap tools definition
|
|
|
|
inherit (bootstrap.test-pkgs) stdenv;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // (mapTestOn ((packagePlatforms pkgs) // rec {
|
2015-09-15 10:46:20 +01:00
|
|
|
haskell.compiler = packagePlatforms pkgs.haskell.compiler;
|
2015-05-29 10:25:26 +01:00
|
|
|
haskellPackages = packagePlatforms pkgs.haskellPackages;
|
2011-08-06 11:28:24 +01:00
|
|
|
|
2016-08-28 17:18:44 +01:00
|
|
|
# Language packages disabled in https://github.com/NixOS/nixpkgs/commit/ccd1029f58a3bb9eca32d81bf3f33cb4be25cc66
|
2015-11-24 09:14:16 +00:00
|
|
|
|
2016-09-18 12:34:28 +01:00
|
|
|
#emacsPackagesNg = packagePlatforms pkgs.emacsPackagesNg;
|
2016-08-28 17:18:44 +01:00
|
|
|
#rPackages = packagePlatforms pkgs.rPackages;
|
2016-02-10 12:50:31 +00:00
|
|
|
ocamlPackages = { };
|
|
|
|
perlPackages = { };
|
2017-05-07 20:35:43 +01:00
|
|
|
|
2017-08-17 22:12:51 +01:00
|
|
|
darwin = packagePlatforms pkgs.darwin // {
|
|
|
|
cf-private = {};
|
|
|
|
osx_private_sdk = {};
|
|
|
|
xcode = {};
|
|
|
|
};
|
2015-02-25 18:27:23 +00:00
|
|
|
} ));
|
2010-08-10 01:09:29 +01:00
|
|
|
|
2013-03-26 10:57:44 +00:00
|
|
|
in jobs
|