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).
|
|
|
|
|
|
2018-02-01 10:34:03 +01:00
|
|
|
|
{ nixpkgs ? { outPath = (import ../lib).cleanSource ./..; revCount = 56789; shortRev = "gfedcba"; }
|
2013-10-31 22:04:26 +01:00
|
|
|
|
, stableBranch ? false
|
2022-09-30 01:20:08 +02:00
|
|
|
|
, supportedSystems ? [ "aarch64-linux" "x86_64-linux" ]
|
2023-11-08 00:59:03 +01:00
|
|
|
|
, limitedSupportedSystems ? [ ]
|
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 {
|
2017-08-03 14:09:30 +02:00
|
|
|
|
inherit stableBranch;
|
|
|
|
|
supportedSystems = supportedSystems ++ limitedSupportedSystems;
|
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
|
|
|
|
|
2020-03-18 23:01:52 +01:00
|
|
|
|
tested =
|
|
|
|
|
let
|
|
|
|
|
onFullSupported = x: map (system: "${x}.${system}") supportedSystems;
|
|
|
|
|
onAllSupported = x: map (system: "${x}.${system}") (supportedSystems ++ limitedSupportedSystems);
|
|
|
|
|
onSystems = systems: x: map (system: "${x}.${system}")
|
|
|
|
|
(pkgs.lib.intersectLists systems (supportedSystems ++ limitedSupportedSystems));
|
|
|
|
|
in pkgs.releaseTools.aggregate {
|
|
|
|
|
name = "nixos-${nixos.channel.version}";
|
|
|
|
|
meta = {
|
|
|
|
|
description = "Release-critical builds for the NixOS channel";
|
2024-04-21 09:15:22 +02:00
|
|
|
|
maintainers = with pkgs.lib.maintainers; [ ];
|
2020-03-18 23:01:52 +01:00
|
|
|
|
};
|
|
|
|
|
constituents = pkgs.lib.concatLists [
|
|
|
|
|
[ "nixos.channel" ]
|
|
|
|
|
(onFullSupported "nixos.dummy")
|
|
|
|
|
(onAllSupported "nixos.iso_minimal")
|
2020-11-20 01:34:23 +01:00
|
|
|
|
(onSystems ["x86_64-linux" "aarch64-linux"] "nixos.amazonImage")
|
2024-05-20 17:57:36 +02:00
|
|
|
|
(onFullSupported "nixos.iso_plasma6")
|
2022-09-30 01:42:19 +02:00
|
|
|
|
(onFullSupported "nixos.iso_gnome")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.manual")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.ova")
|
|
|
|
|
(onSystems ["aarch64-linux"] "nixos.sd_image")
|
2022-10-24 15:07:50 +02:00
|
|
|
|
(onFullSupported "nixos.tests.acme")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.boot.biosCdrom")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.boot.biosUsb")
|
|
|
|
|
(onFullSupported "nixos.tests.boot-stage1")
|
2022-10-08 22:31:52 +02:00
|
|
|
|
(onFullSupported "nixos.tests.boot.uefiCdrom")
|
|
|
|
|
(onFullSupported "nixos.tests.boot.uefiUsb")
|
|
|
|
|
(onFullSupported "nixos.tests.chromium")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.containers-imperative")
|
|
|
|
|
(onFullSupported "nixos.tests.containers-ip")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.docker")
|
|
|
|
|
(onFullSupported "nixos.tests.ecryptfs")
|
|
|
|
|
(onFullSupported "nixos.tests.env")
|
2023-10-10 12:18:45 +02:00
|
|
|
|
|
|
|
|
|
# Way too many manual retries required on Hydra.
|
|
|
|
|
# Apparently it's hard to track down the cause.
|
|
|
|
|
# So let's depend just on the packages for now.
|
|
|
|
|
#(onFullSupported "nixos.tests.firefox-esr")
|
|
|
|
|
#(onFullSupported "nixos.tests.firefox")
|
2023-10-15 08:18:33 +02:00
|
|
|
|
# Note: only -unwrapped variants have a Hydra job.
|
|
|
|
|
(onFullSupported "nixpkgs.firefox-esr-unwrapped")
|
|
|
|
|
(onFullSupported "nixpkgs.firefox-unwrapped")
|
2023-10-10 12:18:45 +02:00
|
|
|
|
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.firewall")
|
|
|
|
|
(onFullSupported "nixos.tests.fontconfig-default-fonts")
|
2023-10-02 14:05:35 +02:00
|
|
|
|
(onFullSupported "nixos.tests.gitlab")
|
2021-05-07 23:18:14 +02:00
|
|
|
|
(onFullSupported "nixos.tests.gnome")
|
|
|
|
|
(onFullSupported "nixos.tests.gnome-xorg")
|
2024-05-02 08:29:41 +02:00
|
|
|
|
# FIXME: broken by QEMU 8.2.3 upgrade, reenable when fixed
|
|
|
|
|
# Upstream issue: https://gitlab.com/qemu-project/qemu/-/issues/2321
|
|
|
|
|
# (onSystems ["x86_64-linux"] "nixos.tests.hibernate")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.i3wm")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSimple")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolDefault")
|
2022-10-31 15:31:10 +01:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolEscape")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvols")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.luksroot")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.lvm")
|
2023-03-24 19:16:24 +01:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.separateBootZfs")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.separateBootFat")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.separateBoot")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.simpleLabels")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.simpleProvided")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.simpleUefiSystemdBoot")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.simple")
|
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.swraid")
|
2023-10-24 16:37:29 +02:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.installer.zfsroot")
|
2023-10-22 21:47:35 +02:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.nixos-rebuild-specialisations")
|
2024-05-30 20:00:12 +02:00
|
|
|
|
(onFullSupported "nixos.tests.nix-misc.default")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.ipv6")
|
|
|
|
|
(onFullSupported "nixos.tests.keymap.azerty")
|
|
|
|
|
(onFullSupported "nixos.tests.keymap.colemak")
|
|
|
|
|
(onFullSupported "nixos.tests.keymap.dvorak")
|
2021-05-17 22:49:45 +02:00
|
|
|
|
(onFullSupported "nixos.tests.keymap.dvorak-programmer")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.keymap.neo")
|
|
|
|
|
(onFullSupported "nixos.tests.keymap.qwertz")
|
2020-04-05 01:30:30 +02:00
|
|
|
|
(onFullSupported "nixos.tests.latestKernel.login")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.lightdm")
|
|
|
|
|
(onFullSupported "nixos.tests.login")
|
2024-06-05 17:50:37 +02:00
|
|
|
|
(onFullSupported "nixos.tests.misc")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.mutableUsers")
|
|
|
|
|
(onFullSupported "nixos.tests.nat.firewall")
|
|
|
|
|
(onFullSupported "nixos.tests.nat.standalone")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.bond")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.bridge")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.dhcpOneIf")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.dhcpSimple")
|
2020-05-01 18:38:41 +02:00
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.link")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.loopback")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.macvlan")
|
2020-05-01 18:38:41 +02:00
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.privacy")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.routes")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.sit")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.static")
|
2020-05-01 18:38:41 +02:00
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.virtual")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.networking.scripted.vlan")
|
2020-05-01 18:38:41 +02:00
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.bond")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.bridge")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.dhcpOneIf")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.dhcpSimple")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.link")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.loopback")
|
2020-08-31 02:43:34 +02:00
|
|
|
|
# Fails nondeterministically (https://github.com/NixOS/nixpkgs/issues/96709)
|
|
|
|
|
#(onFullSupported "nixos.tests.networking.networkd.macvlan")
|
2020-05-01 18:38:41 +02:00
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.privacy")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.routes")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.sit")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.static")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.virtual")
|
|
|
|
|
(onFullSupported "nixos.tests.networking.networkd.vlan")
|
2020-05-01 17:45:40 +02:00
|
|
|
|
(onFullSupported "nixos.tests.systemd-networkd-ipv6-prefix-delegation")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.nfs4.simple")
|
2022-05-03 11:38:28 +02:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.oci-containers.podman")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.openssh")
|
|
|
|
|
(onFullSupported "nixos.tests.pantheon")
|
|
|
|
|
(onFullSupported "nixos.tests.php.fpm")
|
2020-04-16 21:48:40 +02:00
|
|
|
|
(onFullSupported "nixos.tests.php.httpd")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.php.pcre")
|
|
|
|
|
(onFullSupported "nixos.tests.plasma5")
|
2022-05-03 11:38:28 +02:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixos.tests.podman")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.predictable-interface-names.predictableNetworkd")
|
|
|
|
|
(onFullSupported "nixos.tests.predictable-interface-names.predictable")
|
|
|
|
|
(onFullSupported "nixos.tests.predictable-interface-names.unpredictableNetworkd")
|
|
|
|
|
(onFullSupported "nixos.tests.predictable-interface-names.unpredictable")
|
2022-12-07 15:52:08 +01:00
|
|
|
|
(onFullSupported "nixos.tests.printing-service")
|
|
|
|
|
(onFullSupported "nixos.tests.printing-socket")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.proxy")
|
|
|
|
|
(onFullSupported "nixos.tests.sddm.default")
|
2020-12-23 19:28:46 +01:00
|
|
|
|
(onFullSupported "nixos.tests.shadow")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.simple")
|
2021-05-27 13:36:48 +02:00
|
|
|
|
(onFullSupported "nixos.tests.sway")
|
2020-03-18 23:01:52 +01:00
|
|
|
|
(onFullSupported "nixos.tests.switchTest")
|
|
|
|
|
(onFullSupported "nixos.tests.udisks2")
|
|
|
|
|
(onFullSupported "nixos.tests.xfce")
|
|
|
|
|
(onFullSupported "nixpkgs.emacs")
|
|
|
|
|
(onFullSupported "nixpkgs.jdk")
|
2024-01-05 12:22:11 +01:00
|
|
|
|
(onSystems ["x86_64-linux"] "nixpkgs.mesa_i686") # i686 sanity check + useful
|
2024-04-17 08:53:10 +02:00
|
|
|
|
[
|
|
|
|
|
"nixpkgs.tarball"
|
|
|
|
|
"nixpkgs.release-checks"
|
|
|
|
|
]
|
2020-03-18 23:01:52 +01:00
|
|
|
|
];
|
2013-03-26 17:35:28 +01:00
|
|
|
|
};
|
2012-04-11 11:17:32 +02:00
|
|
|
|
}
|