diff options
author | lassulus <lass@blue.r> | 2018-09-07 17:40:10 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-09-07 17:40:15 +0200 |
commit | f21ec7612c1151a3a679a67b08a768aac43a9605 (patch) | |
tree | bc33417a1af9b97010df2ad926c7ea83f2927328 | |
parent | 293dada1cd44d23249697cb7c86d0a12f34c0e0d (diff) |
l krops: prepare .ci for buildbot
-rw-r--r-- | lass/krops.nix | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lass/krops.nix b/lass/krops.nix index 5111730ed..cf2ebfbd2 100644 --- a/lass/krops.nix +++ b/lass/krops.nix @@ -30,13 +30,11 @@ in { # usage: $(nix-build --no-out-link --argstr name HOSTNAME -A test) test = pkgs.krops.writeTest "${name}-test" { source = source { test = true; }; - target = "${lib.getEnv "HOME"}/tmp/${name}-krops-test-src"; + target = "${lib.getEnv "HOME"}/tmp/${name}-stockholm-test"; }; - ci = map (host: - pkgs.krops.writeTest "${host.name}-test" { - source = source { test = true; }; - target = "${lib.getEnv "TMPDIR"}/lass/${host.name}"; - } - ) (lib.filter (host: lib.getAttr "ci" host && host.owner == "lass") (lib.attrValues config.krebs.hosts)); + ci = pkgs.krops.writeTest "${name}-test" { + source = source { test = true; }; + target = "${lib.getEnv "HOME"}/stockholm-build"; + }; } |