diff options
Diffstat (limited to 'krebs/2configs/buildbot-krebs.nix')
-rw-r--r-- | krebs/2configs/buildbot-krebs.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/krebs/2configs/buildbot-krebs.nix b/krebs/2configs/buildbot-krebs.nix new file mode 100644 index 000000000..7f243b506 --- /dev/null +++ b/krebs/2configs/buildbot-krebs.nix @@ -0,0 +1,18 @@ +{ lib, config, pkgs, ... }: +{ + imports = [ + <stockholm/krebs/2configs/repo-sync.nix> + ]; + + 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" + ]; + }; +} |