blob: 45c7e4fa03da2295b3934d4649884b2b08d69396 (
plain) (
blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{ config, pkgs, lib, ... }:
let
cfg = config.my.services.buildkite;
agents = lib.range 1 5;
secrets = config.age.secrets;
my-gerrit-hook = name:
pkgs.writeShellScript "besadii-whitby" ''
exec -a ${name} ${pkgs.tools.gerrit-hook}/bin/gerrit-hook "$@"
'';
buildkiteHooks = pkgs.runCommandNoCC "buildkite-hooks" { } ''
mkdir -p $out/bin
ln -s ${my-gerrit-hook "post-command"} $out/bin/post-command
'';
in
{
options.my.services.buildkite = with lib; {
enable = mkEnableOption "buildkite agent";
};
config = lib.mkIf cfg.enable {
# see https://buildkite.com/docs/agent/v3
# and https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/continuous-integration/buildkite-agents.nix
services.buildkite-agents = lib.listToAttrs (map
(n: rec {
name = "builder-${toString n}";
value = {
inherit name;
enable = true;
tokenPath = secrets."buildkite/agent".path;
hooks.post-command = "${buildkiteHooks}/bin/post-command";
runtimePackages = with pkgs; [
bash
coreutils
curl
git
gnutar
gzip
jq
nix
];
};
})
agents);
# Set up a group for all Buildkite agent users
users = {
groups.buildkite-agents = { };
users = builtins.listToAttrs (map
(n: rec {
name = "buildkite-agent-builder-${toString n}";
value = {
isSystemUser = true;
group = lib.mkForce "buildkite-agents";
extraGroups = [ name "docker" ];
};
})
agents);
};
};
}
|