mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
Temporarily remove the Meson builds from packages
in the flake
This will avoid some out-of-memory issues in GitHub actions that result from num jobs > 1 and num cores = 4. Once we only have the Meson build system, this problem should go away, and we can reenable these jobs.
This commit is contained in:
parent
5e806673c3
commit
c9cdc2423a
2 changed files with 6 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 =
|
||||||
|
|
|
@ -42,7 +42,7 @@ in
|
||||||
{
|
{
|
||||||
# Binary package for various platforms.
|
# Binary package for various platforms.
|
||||||
build = forAllPackages (pkgName:
|
build = forAllPackages (pkgName:
|
||||||
forAllSystems (system: self.packages.${system}.${pkgName}));
|
forAllSystems (system: nixpkgsFor.${system}.native.${pkgName}));
|
||||||
|
|
||||||
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);
|
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue