From b3d2040b1eb692c1add4a74774a216a0d2ae49cd Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 28 Jul 2017 15:09:33 +0200 Subject: krebs: shared-buildbot -> buildbot-krebs --- krebs/2configs/buildbot-krebs.nix | 18 ++++++++++++++++++ krebs/2configs/shared-buildbot.nix | 18 ------------------ 2 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 krebs/2configs/buildbot-krebs.nix delete mode 100644 krebs/2configs/shared-buildbot.nix (limited to 'krebs/2configs') diff --git a/krebs/2configs/buildbot-krebs.nix b/krebs/2configs/buildbot-krebs.nix new file mode 100644 index 00000000..7f243b50 --- /dev/null +++ b/krebs/2configs/buildbot-krebs.nix @@ -0,0 +1,18 @@ +{ lib, config, pkgs, ... }: +{ + imports = [ + + ]; + + networking.firewall.allowedTCPPorts = [ 80 8010 9989 ]; + krebs.ci.enable = true; + krebs.ci.users.krebs ={ + all = true; + hosts = [ + "test-arch" + "test-centos6" + "test-centos7" + "test-all-krebs-modules" + ]; + }; +} diff --git a/krebs/2configs/shared-buildbot.nix b/krebs/2configs/shared-buildbot.nix deleted file mode 100644 index 7f243b50..00000000 --- a/krebs/2configs/shared-buildbot.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ lib, config, pkgs, ... }: -{ - imports = [ - - ]; - - networking.firewall.allowedTCPPorts = [ 80 8010 9989 ]; - krebs.ci.enable = true; - krebs.ci.users.krebs ={ - all = true; - hosts = [ - "test-arch" - "test-centos6" - "test-centos7" - "test-all-krebs-modules" - ]; - }; -} -- cgit v1.2.3 From cc8cc1bb63517072d442ce5d11a5d610b1a70dd7 Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 28 Jul 2017 15:36:02 +0200 Subject: krebs hotdog: build all managed hosts (+ tests) --- krebs/2configs/buildbot-all.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 krebs/2configs/buildbot-all.nix (limited to 'krebs/2configs') diff --git a/krebs/2configs/buildbot-all.nix b/krebs/2configs/buildbot-all.nix new file mode 100644 index 00000000..fe982c87 --- /dev/null +++ b/krebs/2configs/buildbot-all.nix @@ -0,0 +1,11 @@ +{ lib, config, pkgs, ... }: +{ + imports = [ + + ]; + krebs.ci.users.lass.all = true; + krebs.ci.users.makefu.all = true; + krebs.ci.users.nin.all = true; + krebs.ci.users.tv.all = true; +} + -- cgit v1.2.3