diff options
author | lassulus <lass@blue.r> | 2018-10-09 13:53:53 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-10-09 14:04:29 +0200 |
commit | 939da486052ca435df45b3d46979a7f0ab3e1b57 (patch) | |
tree | 0dd4948f2cb2b4af234f699ace4543e2ef0d05ae /ci.nix | |
parent | 84e8732832fb21e248b100b53c0d5d7df45d0d91 (diff) |
ci.nix: test every host in seperate folder
Diffstat (limited to 'ci.nix')
-rw-r--r-- | ci.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,6 +16,6 @@ let 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";}); + ((import (toString ./. + "/${owner}/krops.nix") { name = host; }).test {target = "${getEnv "HOME"}/stockholm-build/${host}";}); in mapAttrs (n: h: build n h.owner.name) ci-systems |