summary refs log tree commit diff
path: root/nixos/release-small.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-02-17 16:35:53 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-02-17 16:37:10 +0100
commit895042956f279ae8ebc9fd026664cea8198f71ec (patch)
tree3a4ce99ee49f496ea4907c8e2b36c0aa8f5a22ca /nixos/release-small.nix
parent3f905e52edc962789a899e60e3fca39ca5bbb399 (diff)
downloadnixpkgs-895042956f279ae8ebc9fd026664cea8198f71ec.tar
nixpkgs-895042956f279ae8ebc9fd026664cea8198f71ec.tar.gz
nixpkgs-895042956f279ae8ebc9fd026664cea8198f71ec.tar.bz2
nixpkgs-895042956f279ae8ebc9fd026664cea8198f71ec.tar.lz
nixpkgs-895042956f279ae8ebc9fd026664cea8198f71ec.tar.xz
nixpkgs-895042956f279ae8ebc9fd026664cea8198f71ec.tar.zst
nixpkgs-895042956f279ae8ebc9fd026664cea8198f71ec.zip
nixos/release-small.nix: List constituents of the 'tested' job by name
https://github.com/NixOS/hydra/issues/715
Diffstat (limited to 'nixos/release-small.nix')
-rw-r--r--nixos/release-small.nix38
1 files changed, 31 insertions, 7 deletions
diff --git a/nixos/release-small.nix b/nixos/release-small.nix
index 74c16e990f3..7b86a91357e 100644
--- a/nixos/release-small.nix
+++ b/nixos/release-small.nix
@@ -82,18 +82,42 @@ in rec {
       vim;
   };
 
-  tested = lib.hydraJob (pkgs.releaseTools.aggregate {
+  tested = pkgs.releaseTools.aggregate {
     name = "nixos-${nixos.channel.version}";
     meta = {
       description = "Release-critical builds for the NixOS channel";
       maintainers = [ lib.maintainers.eelco ];
     };
     constituents =
-      let all = x: map (system: x.${system}) supportedSystems; in
-      [ nixpkgs.tarball
-        (all nixpkgs.jdk)
-      ]
-      ++ lib.collect lib.isDerivation nixos;
-  });
+      [ "nixos.channel"
+        "nixos.dummy.x86_64-linux"
+        "nixos.iso_minimal.x86_64-linux"
+        "nixos.manual.x86_64-linux"
+        "nixos.tests.boot.biosCdrom.x86_64-linux"
+        "nixos.tests.containers-imperative.x86_64-linux"
+        "nixos.tests.containers-ip.x86_64-linux"
+        "nixos.tests.firewall.x86_64-linux"
+        "nixos.tests.installer.lvm.x86_64-linux"
+        "nixos.tests.installer.separateBoot.x86_64-linux"
+        "nixos.tests.installer.simple.x86_64-linux"
+        "nixos.tests.ipv6.x86_64-linux"
+        "nixos.tests.login.x86_64-linux"
+        "nixos.tests.misc.x86_64-linux"
+        "nixos.tests.nat.firewall-conntrack.x86_64-linux"
+        "nixos.tests.nat.firewall.x86_64-linux"
+        "nixos.tests.nat.standalone.x86_64-linux"
+        "nixos.tests.nfs3.simple.x86_64-linux"
+        "nixos.tests.openssh.x86_64-linux"
+        "nixos.tests.php-pcre.x86_64-linux"
+        "nixos.tests.predictable-interface-names.predictable.x86_64-linux"
+        "nixos.tests.predictable-interface-names.predictableNetworkd.x86_64-linux"
+        "nixos.tests.predictable-interface-names.unpredictable.x86_64-linux"
+        "nixos.tests.predictable-interface-names.unpredictableNetworkd.x86_64-linux"
+        "nixos.tests.proxy.x86_64-linux"
+        "nixos.tests.simple.x86_64-linux"
+        "nixpkgs.jdk.x86_64-linux"
+        "nixpkgs.tarball"
+      ];
+  };
 
 }