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.
This commit is contained in:
Eelco Dolstra 2015-07-14 16:01:46 +02:00
parent 0ba8f1b1da
commit 4c0e44c34c
2 changed files with 5 additions and 1 deletions

View file

@ -90,6 +90,7 @@ in rec {
nixpkgs.tarball
(all nixpkgs.emacs)
(all nixpkgs.jdk)
];
});

View file

@ -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;
});
}