summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/buildbot-all.nix
blob: 5ea78f2273ac44d68f1ad335c34e313dc8267e2e (plain)
1
2
3
4
5
6
7
8
9
10
with import <stockholm/lib>;
{ lib, config, pkgs, ... }:
{
  networking.firewall.allowedTCPPorts = [ 80 8010 9989 ];
  krebs.ci.enable = true;
  krebs.ci.treeStableTimer = 1;
  krebs.ci.hosts = filter (getAttr "ci") (attrValues config.krebs.hosts);
  krebs.ci.tests = [ "deploy" ];
}