From 1b2224fac6c96b78c89cfc2719d4b7582a78bc9b Mon Sep 17 00:00:00 2001 From: aviac Date: Thu, 16 Oct 2025 09:15:26 +0200 Subject: [PATCH] feat: add hydra jobs to build all packages --- nix/default.nix | 2 ++ nix/hydra.nix | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 nix/hydra.nix diff --git a/nix/default.nix b/nix/default.nix index a642a1ff..b0f9c444 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -4,5 +4,7 @@ ./packages ./shells ./tests + + ./hydra.nix ]; } diff --git a/nix/hydra.nix b/nix/hydra.nix new file mode 100644 index 00000000..f3f4ec6c --- /dev/null +++ b/nix/hydra.nix @@ -0,0 +1,9 @@ +{ inputs, ... }: +let + lib = inputs.nixpkgs.lib; +in +{ + flake.hydraJobs.packages = builtins.mapAttrs ( + _name: lib.hydraJob + ) inputs.self.packages.x86_64-linux; +}