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

11 lines
285 B
Nix
Raw Normal View History

2017-08-31 19:01:53 +02: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 19:15:09 +02:00
krebs.ci.hosts = filter (getAttr "ci") (attrValues config.krebs.hosts);
2017-12-31 13:30:35 +01:00
krebs.ci.tests = [ "deploy" ];
}