Replace full flake source (self) with minimal filtered filesets to prevent unnecessary rebuilds when unrelated files change. All three inventory eval tests now use the same unified fileset containing only necessary files. This follows the same optimization pattern applied to other eval tests, significantly reducing rebuild frequency during development.
64 lines
1.9 KiB
Nix
64 lines
1.9 KiB
Nix
{ self, inputs, ... }:
|
|
let
|
|
inputOverrides = self.clanLib.flake-inputs.getOverrides inputs;
|
|
in
|
|
{
|
|
perSystem =
|
|
{
|
|
pkgs,
|
|
lib,
|
|
system,
|
|
...
|
|
}:
|
|
let
|
|
# Common filtered source for inventory tests
|
|
inventoryTestsSrc = lib.fileset.toSource {
|
|
root = ../../../..;
|
|
fileset = lib.fileset.unions [
|
|
../../../../flake.nix
|
|
../../../../flake.lock
|
|
(lib.fileset.fileFilter (file: file.name == "flake-module.nix") ../../../..)
|
|
../../../../flakeModules
|
|
../../../../lib
|
|
../../../../nixosModules/clanCore
|
|
../../../../clanModules/borgbackup
|
|
../../../../machines
|
|
../../../../inventory.json
|
|
];
|
|
};
|
|
in
|
|
{
|
|
# Run: nix-unit --extra-experimental-features flakes --flake .#legacyPackages.x86_64-linux.<attrName>
|
|
legacyPackages.evalTests-distributedServices = import ./tests {
|
|
inherit lib;
|
|
clanLib = self.clanLib;
|
|
};
|
|
legacyPackages.eval-tests-resolve-module = import ./test-resolve-module.nix {
|
|
inherit lib;
|
|
};
|
|
|
|
checks = {
|
|
eval-lib-distributedServices = pkgs.runCommand "tests" { nativeBuildInputs = [ pkgs.nix-unit ]; } ''
|
|
export HOME="$(realpath .)"
|
|
nix-unit --eval-store "$HOME" \
|
|
--extra-experimental-features flakes \
|
|
--show-trace \
|
|
${inputOverrides} \
|
|
--flake ${inventoryTestsSrc}#legacyPackages.${system}.evalTests-distributedServices
|
|
|
|
touch $out
|
|
'';
|
|
eval-tests-resolve-module = pkgs.runCommand "tests" { nativeBuildInputs = [ pkgs.nix-unit ]; } ''
|
|
export HOME="$(realpath .)"
|
|
nix-unit --eval-store "$HOME" \
|
|
--extra-experimental-features flakes \
|
|
--show-trace \
|
|
${inputOverrides} \
|
|
--flake ${inventoryTestsSrc}#legacyPackages.${system}.eval-tests-resolve-module
|
|
|
|
touch $out
|
|
'';
|
|
};
|
|
};
|
|
}
|