add ci.nix

This commit is contained in:
lassulus 2018-09-09 19:17:11 +02:00
parent 516a425eda
commit 10135cbeac
1 changed files with 21 additions and 0 deletions

21
ci.nix Normal file
View File

@ -0,0 +1,21 @@
# usage: nix-instantiate --eval --strict --json ./ci.nix
with import ./lib;
let
pkgs = import <nixpkgs> { overlays = [ (import ./submodules/nix-writers/pkgs) ]; };
system =
import <nixpkgs/nixos/lib/eval-config.nix> {
modules = [{
imports = [
./krebs
./krebs/2configs
];
}];
}
;
ci-systems = filterAttrs (_: v: v.ci) system.config.krebs.hosts;
build = host: owner:
((import (toString ./. + "/${owner}/krops.nix") { name = host; }).test {target = "${getEnv "HOME"}/stockholm-build";});
in mapAttrs (n: h: build n h.owner.name) ci-systems