stockholm/krebs/2configs/buildbot-all.nix

11 lines
285 B
Nix
Raw Normal View History

2017-08-31 17:01:53 +00:00
with import <stockholm/lib>;
{ lib, config, pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [ 80 8010 9989 ];
krebs.ci.enable = true;
krebs.ci.treeStableTimer = 1;
2017-08-31 17:15:09 +00:00
krebs.ci.hosts = filter (getAttr "ci") (attrValues config.krebs.hosts);
2017-12-31 12:30:35 +00:00
krebs.ci.tests = [ "deploy" ];
}