51 lines
1.4 KiB
Nix
51 lines
1.4 KiB
Nix
{ inputs, self, pkgs, system, ... }:
|
|
if !pkgs.stdenv.hostPlatform.isLinux then {} else let
|
|
lib = inputs.nixpkgs.lib;
|
|
|
|
mkTestDrv = name: type:
|
|
if type == "directory" then
|
|
pkgs.runCommand "test-${name}" {} ''
|
|
if ! [ -f ${./test + "/${name}" + /run.sh} ]; then
|
|
echo "no run.sh in test/${name}"
|
|
exit 1
|
|
fi
|
|
mkdir -p "$out"
|
|
cp -r ${./test + "/${name}"}/* "$out/"
|
|
chmod +x "$out/run.sh"
|
|
''
|
|
else if lib.hasSuffix ".sh" name then
|
|
pkgs.runCommand "test-${lib.removeSuffix ".sh" name}" {} ''
|
|
mkdir -p "$out"
|
|
install -Dm755 ${./test + "/${name}"} "$out/run.sh"
|
|
''
|
|
else
|
|
null;
|
|
|
|
testDir = builtins.readDir ./test;
|
|
testDrvs =
|
|
lib.mapAttrs' (n: v:
|
|
lib.nameValuePair (lib.removeSuffix ".sh" n) v
|
|
) (lib.filterAttrs (_: v: v != null)
|
|
(lib.mapAttrs (n: t: mkTestDrv n t) testDir));
|
|
|
|
withAtticCache = self.packages.${system}.with-attic-cache;
|
|
|
|
mkTest = testName: testDrv: pkgs.runCommand "with-attic-cache-test-${testName}"
|
|
{
|
|
nativeBuildInputs = [
|
|
pkgs.coreutils
|
|
pkgs.dash
|
|
pkgs.gnugrep
|
|
pkgs.gnused
|
|
pkgs.util-linux
|
|
withAtticCache
|
|
];
|
|
} ''
|
|
test=${testDrv}
|
|
${builtins.readFile ./launch.sh}
|
|
mkdir -p "$out"
|
|
'';
|
|
in lib.mapAttrs' (name: drv:
|
|
lib.nameValuePair "with-attic-cache-${name}" (mkTest name drv)
|
|
) testDrvs
|