forked from extern/nixos-wiki-infra
skip nixos tests in non-linux systems
This commit is contained in:
parent
c4f64d53c4
commit
9ed9db69a4
@ -1,15 +1,11 @@
|
||||
{ self, ... }: {
|
||||
perSystem =
|
||||
{ pkgs
|
||||
, lib
|
||||
, ...
|
||||
}: {
|
||||
checks =
|
||||
let
|
||||
# this gives us a reference to our flake but also all flake inputs
|
||||
checkArgs = { inherit self pkgs; };
|
||||
in
|
||||
{
|
||||
test = import ./test.nix checkArgs;
|
||||
};
|
||||
checks = lib.optionalAttrs pkgs.stdenv.isLinux {
|
||||
test = import ./test.nix { inherit self pkgs; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user