disko/ci.nix

9 lines
134 B
Nix
Raw Normal View History

2018-09-12 23:06:10 +03:00
let
pkgs = import <nixpkgs> {};
in {
test = pkgs.writeScript "test" ''
#!/bin/sh
2022-08-25 16:16:26 +03:00
nix-build "${toString ./tests}";
2018-09-12 23:06:10 +03:00
'';
}