mirror of
https://github.com/nix-community/naersk
synced 2024-11-26 05:20:18 +00:00
Add tests for binaries
This commit is contained in:
parent
0b89694709
commit
c006f86e9d
1 changed files with 6 additions and 0 deletions
6
test.nix
6
test.nix
|
@ -80,6 +80,12 @@ rec
|
|||
(pkgs.lib.cleanSource ./test/simple-dep)
|
||||
{};
|
||||
|
||||
binary = naersk.buildPackage
|
||||
(pkgs.lib.cleanSource ./test/binary)
|
||||
{};
|
||||
binary_test = pkgs.runCommand "binary-test" { buildInputs = [ binary ]; }
|
||||
"my-bin > $out";
|
||||
|
||||
workspace = naersk.buildPackage
|
||||
(pkgs.lib.cleanSource ./test/workspace)
|
||||
{ doDoc = false; };
|
||||
|
|
Loading…
Reference in a new issue