summary refs log tree commit diff
path: root/nixos/release-small.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-07-14 16:01:46 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-07-14 16:03:29 +0200
commit4c0e44c34c84cd4d4764e9b48206b463d2fbef5a (patch)
treed6ebf2625001a2f9396d025378bff75ab7fb4afb /nixos/release-small.nix
parent0ba8f1b1dad44587c36bac83f5390626de3d1355 (diff)
downloadnixpkgs-4c0e44c34c84cd4d4764e9b48206b463d2fbef5a.tar
nixpkgs-4c0e44c34c84cd4d4764e9b48206b463d2fbef5a.tar.gz
nixpkgs-4c0e44c34c84cd4d4764e9b48206b463d2fbef5a.tar.bz2
nixpkgs-4c0e44c34c84cd4d4764e9b48206b463d2fbef5a.tar.lz
nixpkgs-4c0e44c34c84cd4d4764e9b48206b463d2fbef5a.tar.xz
nixpkgs-4c0e44c34c84cd4d4764e9b48206b463d2fbef5a.tar.zst
nixpkgs-4c0e44c34c84cd4d4764e9b48206b463d2fbef5a.zip
Make OpenJDK release-critical
Currently there are no tests that depend on the JDK. Since we don't
want a release with a broken JDK, make it an explicit dependency of
the "tested" jobs.
Diffstat (limited to 'nixos/release-small.nix')
-rw-r--r--nixos/release-small.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/release-small.nix b/nixos/release-small.nix
index 11155c85369..8e53064f99d 100644
--- a/nixos/release-small.nix
+++ b/nixos/release-small.nix
@@ -87,7 +87,10 @@ in rec {
     };
     constituents =
       let all = x: map (system: x.${system}) supportedSystems; in
-      [ nixpkgs.tarball ] ++ lib.collect lib.isDerivation nixos;
+      [ nixpkgs.tarball
+        (all nixpkgs.jdk)
+      ]
+      ++ lib.collect lib.isDerivation nixos;
   });
 
 }