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