2014-09-24 23:20:53 +01: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 13:52:07 +01:00
|
|
|
|
{ nixpkgs ? { outPath = ./..; revCount = 56789; shortRev = "gfedcba"; }
|
2013-10-31 21:04:26 +00:00
|
|
|
|
, stableBranch ? false
|
2014-04-21 02:06:54 +01:00
|
|
|
|
, supportedSystems ? [ "x86_64-linux" "i686-linux" ]
|
2013-03-26 13:00:31 +00:00
|
|
|
|
}:
|
|
|
|
|
|
2013-04-05 18:59:43 +01:00
|
|
|
|
let
|
2013-08-15 12:19:27 +01:00
|
|
|
|
|
2013-10-01 14:48:39 +01:00
|
|
|
|
nixpkgsSrc = nixpkgs; # urgh
|
2013-03-26 13:44:24 +00:00
|
|
|
|
|
2013-10-01 14:48:39 +01:00
|
|
|
|
pkgs = import ./.. {};
|
2013-03-26 13:00:31 +00:00
|
|
|
|
|
2013-04-05 18:59:43 +01: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 12:19:27 +01:00
|
|
|
|
|
2013-04-05 18:59:43 +01:00
|
|
|
|
in rec {
|
2013-08-15 15:37:53 +01:00
|
|
|
|
|
2013-04-05 18:59:43 +01:00
|
|
|
|
nixos = removeMaintainers (import ./release.nix {
|
2014-09-24 23:20:53 +01:00
|
|
|
|
inherit stableBranch supportedSystems;
|
2013-10-01 14:48:39 +01:00
|
|
|
|
nixpkgs = nixpkgsSrc;
|
2013-04-05 18:59:43 +01:00
|
|
|
|
});
|
2013-03-26 13:00:31 +00:00
|
|
|
|
|
2013-10-01 14:48:39 +01:00
|
|
|
|
nixpkgs = builtins.removeAttrs (removeMaintainers (import ../pkgs/top-level/release.nix {
|
2014-05-01 13:52:07 +01:00
|
|
|
|
inherit supportedSystems;
|
2013-10-01 14:48:39 +01:00
|
|
|
|
nixpkgs = nixpkgsSrc;
|
2013-10-05 21:52:29 +01:00
|
|
|
|
})) [ "unstable" ];
|
2013-03-26 13:00:31 +00:00
|
|
|
|
|
2015-03-20 18:23:55 +00:00
|
|
|
|
tested = pkgs.lib.hydraJob (pkgs.releaseTools.aggregate {
|
2013-10-01 14:48:39 +01:00
|
|
|
|
name = "nixos-${nixos.channel.version}";
|
2013-03-26 16:35:28 +00:00
|
|
|
|
meta = {
|
2014-09-24 23:20:53 +01:00
|
|
|
|
description = "Release-critical builds for the NixOS channel";
|
|
|
|
|
maintainers = [ pkgs.lib.maintainers.eelco ];
|
2013-03-26 16:35:28 +00:00
|
|
|
|
};
|
2013-08-15 02:09:43 +01:00
|
|
|
|
constituents =
|
2014-09-24 23:20:53 +01:00
|
|
|
|
let all = x: map (system: x.${system}) supportedSystems; in
|
2013-03-26 13:00:31 +00:00
|
|
|
|
[ nixos.channel
|
2014-09-24 23:20:53 +01:00
|
|
|
|
(all nixos.dummy)
|
2013-10-31 07:48:57 +00:00
|
|
|
|
(all nixos.manual)
|
2013-03-26 13:00:31 +00:00
|
|
|
|
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.iso_minimal)
|
2016-03-15 14:43:57 +00:00
|
|
|
|
nixos.iso_graphical.x86_64-linux
|
|
|
|
|
nixos.ova.x86_64-linux
|
2013-08-15 12:19:27 +01:00
|
|
|
|
|
2014-08-05 09:25:42 +01:00
|
|
|
|
#(all nixos.tests.containers)
|
2016-05-06 09:56:17 +01:00
|
|
|
|
nixos.tests.chromium
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.firefox)
|
|
|
|
|
(all nixos.tests.firewall)
|
2015-10-14 12:55:11 +01:00
|
|
|
|
nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.installer.lvm)
|
2015-05-21 12:17:25 +01:00
|
|
|
|
(all nixos.tests.installer.luksroot)
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.installer.separateBoot)
|
2015-07-08 20:05:31 +01:00
|
|
|
|
(all nixos.tests.installer.separateBootFat)
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.installer.simple)
|
2014-08-31 17:18:13 +01:00
|
|
|
|
(all nixos.tests.installer.simpleLabels)
|
|
|
|
|
(all nixos.tests.installer.simpleProvided)
|
2015-04-01 07:42:00 +01:00
|
|
|
|
(all nixos.tests.installer.swraid)
|
2014-08-31 17:18:13 +01:00
|
|
|
|
(all nixos.tests.installer.btrfsSimple)
|
|
|
|
|
(all nixos.tests.installer.btrfsSubvols)
|
2014-08-30 00:37:28 +01:00
|
|
|
|
(all nixos.tests.installer.btrfsSubvolDefault)
|
2016-03-01 18:02:36 +00:00
|
|
|
|
(all nixos.tests.boot.biosCdrom)
|
2016-07-21 10:44:55 +01:00
|
|
|
|
#(all nixos.tests.boot.biosUsb) # disabled due to issue #15690
|
2016-04-23 13:11:32 +01:00
|
|
|
|
(all nixos.tests.boot.uefiCdrom)
|
|
|
|
|
(all nixos.tests.boot.uefiUsb)
|
2016-05-06 15:56:54 +01:00
|
|
|
|
(all nixos.tests.boot-stage1)
|
2016-07-14 10:52:08 +01:00
|
|
|
|
(all nixos.tests.ecryptfs)
|
2013-10-17 11:20:07 +01:00
|
|
|
|
(all nixos.tests.ipv6)
|
2016-05-26 10:46:48 +01:00
|
|
|
|
(all nixos.tests.i3wm)
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.kde4)
|
2015-08-17 09:48:04 +01:00
|
|
|
|
#(all nixos.tests.lightdm)
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.login)
|
|
|
|
|
(all nixos.tests.misc)
|
2014-09-18 21:34:29 +01:00
|
|
|
|
(all nixos.tests.nat.firewall)
|
|
|
|
|
(all nixos.tests.nat.standalone)
|
2015-12-18 06:09:42 +00:00
|
|
|
|
(all nixos.tests.networking.scripted.loopback)
|
2014-11-25 23:40:49 +00: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 11:20:07 +01:00
|
|
|
|
(all nixos.tests.nfs3)
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.openssh)
|
2013-09-26 20:00:30 +01:00
|
|
|
|
(all nixos.tests.printing)
|
2013-10-17 11:20:07 +01:00
|
|
|
|
(all nixos.tests.proxy)
|
2015-12-10 16:31:09 +00:00
|
|
|
|
(all nixos.tests.sddm)
|
2014-04-25 16:08:58 +01:00
|
|
|
|
(all nixos.tests.simple)
|
2014-04-19 13:37:05 +01:00
|
|
|
|
(all nixos.tests.udisks2)
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixos.tests.xfce)
|
2013-03-26 13:00:31 +00:00
|
|
|
|
|
|
|
|
|
nixpkgs.tarball
|
2013-08-15 12:19:27 +01:00
|
|
|
|
(all nixpkgs.emacs)
|
2015-07-14 15:01:46 +01:00
|
|
|
|
(all nixpkgs.jdk)
|
2013-03-26 13:00:31 +00:00
|
|
|
|
];
|
2015-03-20 18:23:55 +00:00
|
|
|
|
});
|
2013-03-26 13:00:31 +00:00
|
|
|
|
|
2012-04-11 10:17:32 +01:00
|
|
|
|
}
|