crane/checks/smoke.nix

14 lines
214 B
Nix
Raw Normal View History

2022-01-08 04:56:12 +03:00
{ runCommand
}:
bins: drv:
let
testList = map (b: "${drv}/bin/${b}") bins;
tests = builtins.concatStringsSep "\n" testList;
in
runCommand "smoke-${drv.name}" { } ''
# does it run?
${tests}
touch $out
''