mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +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
|
nixpkgs.tarball
|
||||||
(all nixpkgs.emacs)
|
(all nixpkgs.emacs)
|
||||||
|
(all nixpkgs.jdk)
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -87,7 +87,10 @@ in rec {
|
|||||||
};
|
};
|
||||||
constituents =
|
constituents =
|
||||||
let all = x: map (system: x.${system}) supportedSystems; in
|
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