summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/buildbot-stockholm.nix
blob: 43a38a9f88e8be4267988a72b1768e7cb41bffd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ config, ... }: with import <stockholm/lib>;

{
  networking.firewall.allowedTCPPorts = [ 80 ];
  services.nginx = {
    enable = true;
    virtualHosts.build = {
      serverAliases = [ "build.r" "build.${config.networking.hostName}.r" ];
      locations."/".extraConfig = ''
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_pass http://127.0.0.1:${toString config.krebs.buildbot.master.web.port};
      '';
    };
  };
  krebs.ci = {
    enable = true;
    repos = {
      disko.urls = [
        "http://cgit.gum.r/disko"
        "http://cgit.hotdog.r/disko"
        "http://cgit.ni.r/disko"
        "http://cgit.prism.r/disko"
      ];
      krops.urls = [
        "http://cgit.hotdog.r/krops"
        "http://cgit.ni.r/krops"
        "http://cgit.prism.r/krops"
        "https://github.com/krebs/krops.git"
      ];
      nix_writers.urls = [
        "http://cgit.hotdog.r/nix-writers"
        "http://cgit.ni.r/nix-writers"
        "http://cgit.prism.r/nix-writers"
      ];
      stockholm.urls = [
        "http://cgit.enklave.r/stockholm"
        "http://cgit.gum.r/stockholm"
        "http://cgit.hotdog.r/stockholm"
        "http://cgit.ni.r/stockholm"
        "http://cgit.prism.r/stockholm"
      ];
    };
  };
}