2018-11-13 20:30:04 +00:00
|
|
|
# usage: nix-instantiate --eval --json --read-write-mode --strict ci.nix | jq .
|
2018-09-09 17:17:11 +00:00
|
|
|
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
|
2021-12-23 00:23:06 +00:00
|
|
|
({ config, ... }: {
|
|
|
|
krebs.build.host = config.krebs.hosts.test-all-krebs-modules;
|
|
|
|
})
|
2018-09-09 17:17:11 +00:00
|
|
|
];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
ci-systems = filterAttrs (_: v: v.ci) system.config.krebs.hosts;
|
|
|
|
|
|
|
|
build = host: owner:
|
2019-01-03 20:49:05 +00:00
|
|
|
((import (toString ./. + "/${owner}/krops.nix") { name = host; }).test {target = "${getEnv "HOME"}/stockholm-build";});
|
2018-09-09 17:17:11 +00:00
|
|
|
|
|
|
|
in mapAttrs (n: h: build n h.owner.name) ci-systems
|