summaryrefslogtreecommitdiffstats
path: root/nixos/tests/buildkite-agents.nix
blob: e4fe837ea8cc83ad79e7f3d771267a4a1940498a (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
{ lib, pkgs, ... }:

{
  name = "buildkite-agent";
  meta.maintainers = with lib.maintainers; [ flokli ];

  nodes.machine =
    { pkgs, ... }:
    {
      services.buildkite-agents = {
        one = {
          privateSshKeyPath = (import ./ssh-keys.nix pkgs).snakeOilPrivateKey;
          tokenPath = (pkgs.writeText "my-token" "5678");
        };
        two = {
          tokenPath = (pkgs.writeText "my-token" "1234");
        };
      };
    };

  testScript = ''
    start_all()
    # we can't wait on the unit to start up, as we obviously can't connect to buildkite,
    # but we can look whether files are set up correctly

    machine.wait_for_file("/var/lib/buildkite-agent-one/buildkite-agent.cfg")
    machine.wait_for_file("/var/lib/buildkite-agent-one/.ssh/id_rsa")

    machine.wait_for_file("/var/lib/buildkite-agent-two/buildkite-agent.cfg")
  '';
}