feat: add hydra jobs to build all packages
This commit is contained in:
parent
c1c165ab48
commit
1b2224fac6
2 changed files with 11 additions and 0 deletions
|
|
@ -4,5 +4,7 @@
|
|||
./packages
|
||||
./shells
|
||||
./tests
|
||||
|
||||
./hydra.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
9
nix/hydra.nix
Normal file
9
nix/hydra.nix
Normal file
|
|
@ -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;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue