summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-10-14 20:51:47 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-10-14 22:09:35 +0200
commit874a3c033cabc7882651210aa261d2a3176c8d19 (patch)
tree93265a64572c4309d9a1a6fb73a349ecf2279530 /nixos
parentfcfeda5544765216e59c6e3cd897fce298926b63 (diff)
downloadnixpkgs-874a3c033cabc7882651210aa261d2a3176c8d19.tar
nixpkgs-874a3c033cabc7882651210aa261d2a3176c8d19.tar.gz
nixpkgs-874a3c033cabc7882651210aa261d2a3176c8d19.tar.bz2
nixpkgs-874a3c033cabc7882651210aa261d2a3176c8d19.tar.lz
nixpkgs-874a3c033cabc7882651210aa261d2a3176c8d19.tar.xz
nixpkgs-874a3c033cabc7882651210aa261d2a3176c8d19.tar.zst
nixpkgs-874a3c033cabc7882651210aa261d2a3176c8d19.zip
nixos: limited support archs are not release-critical
Lately failing i686 tests like firefox have been blocking channel
releases. We're still building the tests for systems with limited
support but won't delay a channel release if they fail.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/release-combined.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index f61d80f5599..125e6b7050b 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -42,12 +42,11 @@ in rec {
     name = "nixos-${nixos.channel.version}";
     meta = {
       description = "Release-critical builds for the NixOS channel";
-      maintainers = [ pkgs.lib.maintainers.eelco ];
+      maintainers = with pkgs.lib.maintainers; [ eelco fpletz ];
     };
     constituents =
       let
-        all = x: map (system: x.${system})
-          (supportedSystems ++ limitedSupportedSystems);
+        all = x: map (system: x.${system}) supportedSystems;
       in [
         nixos.channel
         (all nixos.dummy)
@@ -61,7 +60,7 @@ in rec {
         nixos.tests.chromium
         (all nixos.tests.firefox)
         (all nixos.tests.firewall)
-        nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux
+        (all nixos.tests.gnome3)
         nixos.tests.installer.zfsroot.x86_64-linux # ZFS is 64bit only
         (all nixos.tests.installer.lvm)
         (all nixos.tests.installer.luksroot)
@@ -80,9 +79,8 @@ in rec {
         (all nixos.tests.boot.uefiCdrom)
         (all nixos.tests.boot.uefiUsb)
         (all nixos.tests.boot-stage1)
-        nixos.tests.hibernate.x86_64-linux # i686 is flaky, see #23107
+        (all nixos.tests.hibernate)
         nixos.tests.docker
-        nixos.tests.docker-edge
         (all nixos.tests.ecryptfs)
         (all nixos.tests.env)
         (all nixos.tests.ipv6)
@@ -93,7 +91,7 @@ in rec {
         (all nixos.tests.keymap.dvp)
         (all nixos.tests.keymap.neo)
         (all nixos.tests.keymap.qwertz)
-        nixos.tests.plasma5.x86_64-linux # avoid big build on i686
+        (all nixos.tests.plasma5)
         #(all nixos.tests.lightdm)
         (all nixos.tests.login)
         (all nixos.tests.misc)