only do hydra builds on x86_64-linux

This commit is contained in:
Charlotte 🦝 Delenk 2022-06-18 08:56:50 +01:00
parent a4eb827b62
commit 90d73c7f27
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -37,7 +37,7 @@
flake-utils, flake-utils,
... ...
} @ inputs: } @ inputs:
flake-utils.lib.eachSystem ["aarch64-linux" "x86_64-linux"] ( flake-utils.lib.eachDefaultSystem (
system: let system: let
pkgs = import nixpkgs {inherit system;}; pkgs = import nixpkgs {inherit system;};
in rec { in rec {
@ -62,9 +62,12 @@
./misc/plover.nix ./misc/plover.nix
]); ]);
hydraJobs = { hydraJobs =
inherit packages devShells; if system == "x86_64-linux"
}; then {
inherit packages devShells;
}
else {};
} }
); );
} }