mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
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:
parent
0ba8f1b1da
commit
4c0e44c34c
@ -90,6 +90,7 @@ in rec {
|
||||
|
||||
nixpkgs.tarball
|
||||
(all nixpkgs.emacs)
|
||||
(all nixpkgs.jdk)
|
||||
];
|
||||
});
|
||||
|
||||
|
@ -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;
|
||||
});
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user