don’t do hydra builds for i686
This commit is contained in:
parent
78ba1816c9
commit
97db0741b4
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@
|
||||||
)));
|
)));
|
||||||
|
|
||||||
hydraJobs =
|
hydraJobs =
|
||||||
if pkgs.lib.strings.hasSuffix "-linux" system
|
if (system == "x86_64-linux") || (system == "aarch64-linux")
|
||||||
then {
|
then {
|
||||||
inherit packages devShells formatter;
|
inherit packages devShells formatter;
|
||||||
inherit (inputs.cargo2nix.packages.${system}) cargo2nix;
|
inherit (inputs.cargo2nix.packages.${system}) cargo2nix;
|
||||||
|
|
Reference in a new issue