Merge pull request #83249 from bennofs/fix-nixos-aarch64-eval-master

nixos/release-combined.nix: fix tested/supportedSystems (master version of #82886)
This commit is contained in:
Graham Christensen 2020-04-08 08:50:47 -04:00 committed by GitHub
commit 2bf8a722d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,99 +38,102 @@ in rec {
nixpkgs = nixpkgsSrc; nixpkgs = nixpkgsSrc;
})) [ "unstable" ]; })) [ "unstable" ];
tested = pkgs.releaseTools.aggregate { 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}"; name = "nixos-${nixos.channel.version}";
meta = { meta = {
description = "Release-critical builds for the NixOS channel"; description = "Release-critical builds for the NixOS channel";
maintainers = with pkgs.lib.maintainers; [ eelco fpletz ]; maintainers = with pkgs.lib.maintainers; [ eelco fpletz ];
}; };
constituents = [ constituents = pkgs.lib.concatLists [
"nixos.channel" [ "nixos.channel" ]
"nixos.dummy.x86_64-linux" (onFullSupported "nixos.dummy")
"nixos.iso_minimal.aarch64-linux" (onAllSupported "nixos.iso_minimal")
"nixos.iso_minimal.i686-linux" (onSystems ["x86_64-linux"] "nixos.iso_plasma5")
"nixos.iso_minimal.x86_64-linux" (onFullSupported "nixos.manual")
"nixos.iso_plasma5.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.ova")
"nixos.manual.x86_64-linux" (onSystems ["aarch64-linux"] "nixos.sd_image")
"nixos.ova.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.boot.biosCdrom")
"nixos.sd_image.aarch64-linux" (onSystems ["x86_64-linux"] "nixos.tests.boot.biosUsb")
"nixos.tests.boot.biosCdrom.x86_64-linux" (onFullSupported "nixos.tests.boot-stage1")
"nixos.tests.boot.biosUsb.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.boot.uefiCdrom")
"nixos.tests.boot-stage1.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.boot.uefiUsb")
"nixos.tests.boot.uefiCdrom.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.chromium")
"nixos.tests.boot.uefiUsb.x86_64-linux" (onFullSupported "nixos.tests.containers-imperative")
"nixos.tests.chromium.x86_64-linux" (onFullSupported "nixos.tests.containers-ip")
"nixos.tests.containers-imperative.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.docker")
"nixos.tests.containers-ip.x86_64-linux" (onFullSupported "nixos.tests.ecryptfs")
"nixos.tests.docker.x86_64-linux" (onFullSupported "nixos.tests.env")
"nixos.tests.ecryptfs.x86_64-linux" (onFullSupported "nixos.tests.firefox-esr")
"nixos.tests.env.x86_64-linux" (onFullSupported "nixos.tests.firefox")
"nixos.tests.firefox-esr.x86_64-linux" (onFullSupported "nixos.tests.firewall")
"nixos.tests.firefox.x86_64-linux" (onFullSupported "nixos.tests.fontconfig-default-fonts")
"nixos.tests.firewall.x86_64-linux" (onFullSupported "nixos.tests.gnome3")
"nixos.tests.fontconfig-default-fonts.x86_64-linux" (onFullSupported "nixos.tests.gnome3-xorg")
"nixos.tests.gnome3.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.hibernate")
"nixos.tests.gnome3-xorg.x86_64-linux" (onFullSupported "nixos.tests.i3wm")
"nixos.tests.hibernate.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSimple")
"nixos.tests.i3wm.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolDefault")
"nixos.tests.installer.btrfsSimple.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvols")
"nixos.tests.installer.btrfsSubvolDefault.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.luksroot")
"nixos.tests.installer.btrfsSubvols.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.lvm")
"nixos.tests.installer.luksroot.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.separateBootFat")
"nixos.tests.installer.lvm.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.separateBoot")
"nixos.tests.installer.separateBootFat.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.simpleLabels")
"nixos.tests.installer.separateBoot.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.simpleProvided")
"nixos.tests.installer.simpleLabels.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.simpleUefiSystemdBoot")
"nixos.tests.installer.simpleProvided.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.simple")
"nixos.tests.installer.simpleUefiSystemdBoot.x86_64-linux" (onSystems ["x86_64-linux"] "nixos.tests.installer.swraid")
"nixos.tests.installer.simple.x86_64-linux" (onFullSupported "nixos.tests.ipv6")
"nixos.tests.installer.swraid.x86_64-linux" (onFullSupported "nixos.tests.keymap.azerty")
"nixos.tests.ipv6.x86_64-linux" (onFullSupported "nixos.tests.keymap.colemak")
"nixos.tests.keymap.azerty.x86_64-linux" (onFullSupported "nixos.tests.keymap.dvorak")
"nixos.tests.keymap.colemak.x86_64-linux" (onFullSupported "nixos.tests.keymap.dvp")
"nixos.tests.keymap.dvorak.x86_64-linux" (onFullSupported "nixos.tests.keymap.neo")
"nixos.tests.keymap.dvp.x86_64-linux" (onFullSupported "nixos.tests.keymap.qwertz")
"nixos.tests.keymap.neo.x86_64-linux" (onFullSupported "nixos.tests.lightdm")
"nixos.tests.keymap.qwertz.x86_64-linux" (onFullSupported "nixos.tests.login")
"nixos.tests.lightdm.x86_64-linux" (onFullSupported "nixos.tests.misc")
"nixos.tests.login.x86_64-linux" (onFullSupported "nixos.tests.mutableUsers")
"nixos.tests.misc.x86_64-linux" (onFullSupported "nixos.tests.nat.firewall-conntrack")
"nixos.tests.mutableUsers.x86_64-linux" (onFullSupported "nixos.tests.nat.firewall")
"nixos.tests.nat.firewall-conntrack.x86_64-linux" (onFullSupported "nixos.tests.nat.standalone")
"nixos.tests.nat.firewall.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.bond")
"nixos.tests.nat.standalone.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.bridge")
"nixos.tests.networking.scripted.bond.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.dhcpOneIf")
"nixos.tests.networking.scripted.bridge.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.dhcpSimple")
"nixos.tests.networking.scripted.dhcpOneIf.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.loopback")
"nixos.tests.networking.scripted.dhcpSimple.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.macvlan")
"nixos.tests.networking.scripted.loopback.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.sit")
"nixos.tests.networking.scripted.macvlan.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.static")
"nixos.tests.networking.scripted.sit.x86_64-linux" (onFullSupported "nixos.tests.networking.scripted.vlan")
"nixos.tests.networking.scripted.static.x86_64-linux" (onFullSupported "nixos.tests.nfs3.simple")
"nixos.tests.networking.scripted.vlan.x86_64-linux" (onFullSupported "nixos.tests.nfs4.simple")
"nixos.tests.nfs3.simple.x86_64-linux" (onFullSupported "nixos.tests.openssh")
"nixos.tests.nfs4.simple.x86_64-linux" (onFullSupported "nixos.tests.pantheon")
"nixos.tests.openssh.x86_64-linux" (onFullSupported "nixos.tests.php.fpm")
"nixos.tests.pantheon.x86_64-linux" (onFullSupported "nixos.tests.php.pcre")
"nixos.tests.php.fpm.x86_64-linux" (onFullSupported "nixos.tests.plasma5")
"nixos.tests.php.pcre.x86_64-linux" (onFullSupported "nixos.tests.predictable-interface-names.predictableNetworkd")
"nixos.tests.plasma5.x86_64-linux" (onFullSupported "nixos.tests.predictable-interface-names.predictable")
"nixos.tests.predictable-interface-names.predictableNetworkd.x86_64-linux" (onFullSupported "nixos.tests.predictable-interface-names.unpredictableNetworkd")
"nixos.tests.predictable-interface-names.predictable.x86_64-linux" (onFullSupported "nixos.tests.predictable-interface-names.unpredictable")
"nixos.tests.predictable-interface-names.unpredictableNetworkd.x86_64-linux" (onFullSupported "nixos.tests.printing")
"nixos.tests.predictable-interface-names.unpredictable.x86_64-linux" (onFullSupported "nixos.tests.proxy")
"nixos.tests.printing.x86_64-linux" (onFullSupported "nixos.tests.sddm.default")
"nixos.tests.proxy.x86_64-linux" (onFullSupported "nixos.tests.simple")
"nixos.tests.sddm.default.x86_64-linux" (onFullSupported "nixos.tests.switchTest")
"nixos.tests.simple.x86_64-linux" (onFullSupported "nixos.tests.udisks2")
"nixos.tests.switchTest.x86_64-linux" (onFullSupported "nixos.tests.xfce")
"nixos.tests.udisks2.x86_64-linux" (onSystems ["i686-linux"] "nixos.tests.zfs.installer")
"nixos.tests.xfce.x86_64-linux" (onFullSupported "nixpkgs.emacs")
"nixos.tests.zfs.installer.i686-linux" (onFullSupported "nixpkgs.jdk")
"nixpkgs.emacs.x86_64-linux" ["nixpkgs.tarball"]
"nixpkgs.jdk.x86_64-linux"
"nixpkgs.tarball"
]; ];
}; };
} }