From 78cbcb1e95d5af310dac922f13beab341f658e5e Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 13 Nov 2018 21:30:04 +0100 Subject: ci.nix: fix usage --- ci.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci.nix') diff --git a/ci.nix b/ci.nix index 6f4b89b0..631c3dc4 100644 --- a/ci.nix +++ b/ci.nix @@ -1,4 +1,4 @@ -# usage: nix-instantiate --eval --strict --json ./ci.nix +# usage: nix-instantiate --eval --json --read-write-mode --strict ci.nix | jq . with import ./lib; let pkgs = import { overlays = [ (import ./submodules/nix-writers/pkgs) ]; }; -- cgit v1.2.3 From d094f265061cc84d4c13082ae0a8909d8942f821 Mon Sep 17 00:00:00 2001 From: lassulus Date: Tue, 27 Nov 2018 05:14:39 +0100 Subject: ci: build all hosts in same dir --- ci.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci.nix') diff --git a/ci.nix b/ci.nix index 631c3dc4..a383a063 100644 --- a/ci.nix +++ b/ci.nix @@ -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/${host}";}); + ((import (toString ./. + "/${owner}/krops.nix") { name = host; }).test {target = "${getEnv "HOME"}/stockholm-tmp";}); in mapAttrs (n: h: build n h.owner.name) ci-systems -- cgit v1.2.3