only do hydra builds on x86_64-linux
This commit is contained in:
parent
a4eb827b62
commit
90d73c7f27
1 changed files with 7 additions and 4 deletions
11
flake.nix
11
flake.nix
|
@ -37,7 +37,7 @@
|
|||
flake-utils,
|
||||
...
|
||||
} @ inputs:
|
||||
flake-utils.lib.eachSystem ["aarch64-linux" "x86_64-linux"] (
|
||||
flake-utils.lib.eachDefaultSystem (
|
||||
system: let
|
||||
pkgs = import nixpkgs {inherit system;};
|
||||
in rec {
|
||||
|
@ -62,9 +62,12 @@
|
|||
./misc/plover.nix
|
||||
]);
|
||||
|
||||
hydraJobs = {
|
||||
inherit packages devShells;
|
||||
};
|
||||
hydraJobs =
|
||||
if system == "x86_64-linux"
|
||||
then {
|
||||
inherit packages devShells;
|
||||
}
|
||||
else {};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Reference in a new issue