mirror of
https://github.com/NixOS/nix
synced 2025-06-28 22:01:15 +02:00
Merge pull request #10929 from NixOS/avoid-building-too-many-jobs-at-once
Avoid building too many jobs at once
This commit is contained in:
commit
e0b4691754
2 changed files with 7 additions and 3 deletions
|
@ -270,8 +270,11 @@
|
||||||
(lib.genAttrs stdenvs (_: { })))
|
(lib.genAttrs stdenvs (_: { })))
|
||||||
{
|
{
|
||||||
"nix" = { };
|
"nix" = { };
|
||||||
"nix-util" = { };
|
# Temporarily disabled because GitHub Actions OOM issues. Once
|
||||||
"nix-store" = { };
|
# the old build system is gone and we are back to one build
|
||||||
|
# system, we should reenable these.
|
||||||
|
#"nix-util" = { };
|
||||||
|
#"nix-store" = { };
|
||||||
}
|
}
|
||||||
// lib.optionalAttrs (builtins.elem system linux64BitSystems) {
|
// lib.optionalAttrs (builtins.elem system linux64BitSystems) {
|
||||||
dockerImage =
|
dockerImage =
|
||||||
|
|
|
@ -41,7 +41,8 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
# Binary package for various platforms.
|
# Binary package for various platforms.
|
||||||
build = forAllSystems (system: self.packages.${system}.nix);
|
build = forAllPackages (pkgName:
|
||||||
|
forAllSystems (system: nixpkgsFor.${system}.native.${pkgName}));
|
||||||
|
|
||||||
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);
|
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue