summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/buildbot-all.nix
blob: ca994e996fc61e2f47d549d220b1229c3a03a62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
with import <stockholm/lib>;
{ lib, config, pkgs, ... }:
{
  imports = [
    <stockholm/krebs/2configs/repo-sync.nix>
  ];

  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" ];
}