create ci.nix to run all tests

This commit is contained in:
Daniel Barlow
2023-01-29 21:42:53 +00:00
parent a0380728a5
commit 00aa42b803
3 changed files with 10 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ let
overlay = import "${liminix}/overlay.nix";
nixpkgs = import <nixpkgs> { overlays = [overlay]; };
fixture = nixpkgs.callPackage ./fixture.nix {};
check = nixpkgs.runCommand "check" {
in nixpkgs.runCommand "check" {
nativeBuildInputs = with nixpkgs; [ squashfsTools qprint ] ;
} ''
set -e
@@ -16,5 +16,4 @@ mksquashfs - /tmp/out.squashfs -p '/ d 755 0 0' -pf ${fixture} -quiet -no-progre
foo="$(unsquashfs -cat /tmp/out.squashfs service/s6-linux-init-runleveld/run)"
test "$foo" = "$(printf "hello\nworld")"
date > $out
'';
in { inherit check; }
''