kubenix/ci.nix

13 lines
312 B
Nix
Raw Normal View History

2019-05-03 23:17:01 +02:00
let
2019-05-03 23:25:49 +02:00
nixpkgsSrc = builtins.fetchTarball "https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz";
pkgs = import nixpkgsSrc {};
2019-05-03 23:17:01 +02:00
lib = pkgs.lib;
2019-05-03 23:25:49 +02:00
release = import ./release.nix {
inherit pkgs lib;
2019-05-05 11:55:19 +02:00
e2e = false;
2019-05-03 23:25:49 +02:00
nixosPath = "${nixpkgsSrc}/nixos";
};
2019-05-05 11:55:19 +02:00
in with lib; release.tests