2014-09-24 15:20:53 -07:00
|
|
|
|
# This jobset defines the main NixOS channels (such as nixos-unstable
|
|
|
|
|
# and nixos-14.04). The channel is updated every time the ‘tested’ job
|
|
|
|
|
# succeeds, and all other jobs have finished (they may fail).
|
|
|
|
|
|
2014-05-01 05:52:07 -07:00
|
|
|
|
{ nixpkgs ? { outPath = ./..; revCount = 56789; shortRev = "gfedcba"; }
|
2013-10-31 14:04:26 -07:00
|
|
|
|
, stableBranch ? false
|
2017-08-03 05:09:30 -07:00
|
|
|
|
, supportedSystems ? [ "x86_64-linux" ]
|
|
|
|
|
, limitedSupportedSystems ? [ "i686-linux" ]
|
2013-03-26 06:00:31 -07:00
|
|
|
|
}:
|
|
|
|
|
|
2013-04-05 10:59:43 -07:00
|
|
|
|
let
|
2013-08-15 04:19:27 -07:00
|
|
|
|
|
2013-10-01 06:48:39 -07:00
|
|
|
|
nixpkgsSrc = nixpkgs; # urgh
|
2013-03-26 06:44:24 -07:00
|
|
|
|
|
2013-10-01 06:48:39 -07:00
|
|
|
|
pkgs = import ./.. {};
|
2013-03-26 06:00:31 -07:00
|
|
|
|
|
2013-04-05 10:59:43 -07:00
|
|
|
|
removeMaintainers = set: if builtins.isAttrs set
|
|
|
|
|
then if (set.type or "") == "derivation"
|
|
|
|
|
then set // { meta = builtins.removeAttrs (set.meta or {}) [ "maintainers" ]; }
|
|
|
|
|
else pkgs.lib.mapAttrs (n: v: removeMaintainers v) set
|
|
|
|
|
else set;
|
2013-08-15 04:19:27 -07:00
|
|
|
|
|
2017-08-03 05:09:30 -07:00
|
|
|
|
allSupportedNixpkgs = builtins.removeAttrs (removeMaintainers (import ../pkgs/top-level/release.nix {
|
|
|
|
|
supportedSystems = supportedSystems ++ limitedSupportedSystems;
|
|
|
|
|
nixpkgs = nixpkgsSrc;
|
|
|
|
|
})) [ "unstable" ];
|
|
|
|
|
|
2013-04-05 10:59:43 -07:00
|
|
|
|
in rec {
|
2013-08-15 07:37:53 -07:00
|
|
|
|
|
2013-04-05 10:59:43 -07:00
|
|
|
|
nixos = removeMaintainers (import ./release.nix {
|
2017-08-03 05:09:30 -07:00
|
|
|
|
inherit stableBranch;
|
|
|
|
|
supportedSystems = supportedSystems ++ limitedSupportedSystems;
|
2013-10-01 06:48:39 -07:00
|
|
|
|
nixpkgs = nixpkgsSrc;
|
2013-04-05 10:59:43 -07:00
|
|
|
|
});
|
2013-03-26 06:00:31 -07:00
|
|
|
|
|
2013-10-01 06:48:39 -07:00
|
|
|
|
nixpkgs = builtins.removeAttrs (removeMaintainers (import ../pkgs/top-level/release.nix {
|
2014-05-01 05:52:07 -07:00
|
|
|
|
inherit supportedSystems;
|
2013-10-01 06:48:39 -07:00
|
|
|
|
nixpkgs = nixpkgsSrc;
|
2013-10-05 13:52:29 -07:00
|
|
|
|
})) [ "unstable" ];
|
2013-03-26 06:00:31 -07:00
|
|
|
|
|
2015-03-20 11:23:55 -07:00
|
|
|
|
tested = pkgs.lib.hydraJob (pkgs.releaseTools.aggregate {
|
2013-10-01 06:48:39 -07:00
|
|
|
|
name = "nixos-${nixos.channel.version}";
|
2013-03-26 09:35:28 -07:00
|
|
|
|
meta = {
|
2014-09-24 15:20:53 -07:00
|
|
|
|
description = "Release-critical builds for the NixOS channel";
|
2017-10-14 11:51:47 -07:00
|
|
|
|
maintainers = with pkgs.lib.maintainers; [ eelco fpletz ];
|
2013-03-26 09:35:28 -07:00
|
|
|
|
};
|
2013-08-14 18:09:43 -07:00
|
|
|
|
constituents =
|
2017-08-03 05:09:30 -07:00
|
|
|
|
let
|
2017-10-14 11:51:47 -07:00
|
|
|
|
all = x: map (system: x.${system}) supportedSystems;
|
2017-08-03 05:09:30 -07:00
|
|
|
|
in [
|
|
|
|
|
nixos.channel
|
2014-09-24 15:20:53 -07:00
|
|
|
|
(all nixos.dummy)
|
2013-10-31 00:48:57 -07:00
|
|
|
|
(all nixos.manual)
|
2013-03-26 06:00:31 -07:00
|
|
|
|
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.iso_minimal)
|
2016-03-15 07:43:57 -07:00
|
|
|
|
nixos.iso_graphical.x86_64-linux
|
|
|
|
|
nixos.ova.x86_64-linux
|
2013-08-15 04:19:27 -07:00
|
|
|
|
|
2014-08-05 01:25:42 -07:00
|
|
|
|
#(all nixos.tests.containers)
|
2016-08-23 06:13:49 -07:00
|
|
|
|
nixos.tests.chromium
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.tests.firefox)
|
|
|
|
|
(all nixos.tests.firewall)
|
2017-10-14 11:51:47 -07:00
|
|
|
|
(all nixos.tests.gnome3)
|
2017-06-30 12:21:30 -07:00
|
|
|
|
nixos.tests.installer.zfsroot.x86_64-linux # ZFS is 64bit only
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.tests.installer.lvm)
|
2015-05-21 04:17:25 -07:00
|
|
|
|
(all nixos.tests.installer.luksroot)
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.tests.installer.separateBoot)
|
2015-07-08 12:05:31 -07:00
|
|
|
|
(all nixos.tests.installer.separateBootFat)
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.tests.installer.simple)
|
2014-08-31 09:18:13 -07:00
|
|
|
|
(all nixos.tests.installer.simpleLabels)
|
|
|
|
|
(all nixos.tests.installer.simpleProvided)
|
2017-08-18 05:14:18 -07:00
|
|
|
|
(all nixos.tests.installer.simpleUefiSystemdBoot)
|
2015-03-31 23:42:00 -07:00
|
|
|
|
(all nixos.tests.installer.swraid)
|
2014-08-31 09:18:13 -07:00
|
|
|
|
(all nixos.tests.installer.btrfsSimple)
|
|
|
|
|
(all nixos.tests.installer.btrfsSubvols)
|
2014-08-29 16:37:28 -07:00
|
|
|
|
(all nixos.tests.installer.btrfsSubvolDefault)
|
2016-03-01 10:02:36 -08:00
|
|
|
|
(all nixos.tests.boot.biosCdrom)
|
2016-07-21 02:44:55 -07:00
|
|
|
|
#(all nixos.tests.boot.biosUsb) # disabled due to issue #15690
|
2016-04-23 05:11:32 -07:00
|
|
|
|
(all nixos.tests.boot.uefiCdrom)
|
|
|
|
|
(all nixos.tests.boot.uefiUsb)
|
2016-05-06 07:56:54 -07:00
|
|
|
|
(all nixos.tests.boot-stage1)
|
2017-10-14 11:51:47 -07:00
|
|
|
|
(all nixos.tests.hibernate)
|
2017-09-07 12:11:06 -07:00
|
|
|
|
nixos.tests.docker
|
2016-07-14 02:52:08 -07:00
|
|
|
|
(all nixos.tests.ecryptfs)
|
2017-09-05 16:05:37 -07:00
|
|
|
|
(all nixos.tests.env)
|
2013-10-17 03:20:07 -07:00
|
|
|
|
(all nixos.tests.ipv6)
|
2016-05-26 02:46:48 -07:00
|
|
|
|
(all nixos.tests.i3wm)
|
2017-06-21 18:33:35 -07:00
|
|
|
|
(all nixos.tests.keymap.azerty)
|
|
|
|
|
(all nixos.tests.keymap.colemak)
|
|
|
|
|
(all nixos.tests.keymap.dvorak)
|
|
|
|
|
(all nixos.tests.keymap.dvp)
|
|
|
|
|
(all nixos.tests.keymap.neo)
|
|
|
|
|
(all nixos.tests.keymap.qwertz)
|
2017-10-14 11:51:47 -07:00
|
|
|
|
(all nixos.tests.plasma5)
|
2015-08-17 01:48:04 -07:00
|
|
|
|
#(all nixos.tests.lightdm)
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.tests.login)
|
|
|
|
|
(all nixos.tests.misc)
|
2014-09-18 13:34:29 -07:00
|
|
|
|
(all nixos.tests.nat.firewall)
|
|
|
|
|
(all nixos.tests.nat.standalone)
|
2015-12-17 22:09:42 -08:00
|
|
|
|
(all nixos.tests.networking.scripted.loopback)
|
2014-11-25 15:40:49 -08:00
|
|
|
|
(all nixos.tests.networking.scripted.static)
|
|
|
|
|
(all nixos.tests.networking.scripted.dhcpSimple)
|
|
|
|
|
(all nixos.tests.networking.scripted.dhcpOneIf)
|
|
|
|
|
(all nixos.tests.networking.scripted.bond)
|
|
|
|
|
(all nixos.tests.networking.scripted.bridge)
|
|
|
|
|
(all nixos.tests.networking.scripted.macvlan)
|
|
|
|
|
(all nixos.tests.networking.scripted.sit)
|
|
|
|
|
(all nixos.tests.networking.scripted.vlan)
|
2013-10-17 03:20:07 -07:00
|
|
|
|
(all nixos.tests.nfs3)
|
2016-09-07 05:12:47 -07:00
|
|
|
|
(all nixos.tests.nfs4)
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.tests.openssh)
|
2013-09-26 12:00:30 -07:00
|
|
|
|
(all nixos.tests.printing)
|
2013-10-17 03:20:07 -07:00
|
|
|
|
(all nixos.tests.proxy)
|
2017-03-24 08:38:16 -07:00
|
|
|
|
(all nixos.tests.sddm.default)
|
2014-04-25 08:08:58 -07:00
|
|
|
|
(all nixos.tests.simple)
|
2017-04-23 10:14:44 -07:00
|
|
|
|
(all nixos.tests.slim)
|
2014-04-19 05:37:05 -07:00
|
|
|
|
(all nixos.tests.udisks2)
|
2013-08-15 04:19:27 -07:00
|
|
|
|
(all nixos.tests.xfce)
|
2013-03-26 06:00:31 -07:00
|
|
|
|
|
|
|
|
|
nixpkgs.tarball
|
2017-08-03 05:09:30 -07:00
|
|
|
|
(all allSupportedNixpkgs.emacs)
|
|
|
|
|
(all allSupportedNixpkgs.jdk)
|
2013-03-26 06:00:31 -07:00
|
|
|
|
];
|
2015-03-20 11:23:55 -07:00
|
|
|
|
});
|
2013-03-26 06:00:31 -07:00
|
|
|
|
|
2012-04-11 02:17:32 -07:00
|
|
|
|
}
|