nixpkgs/nixos/tests/buildkite-agents.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
872 B
Nix
Raw Normal View History

import ./make-test-python.nix ({ lib, pkgs, ... }:
2020-01-19 20:50:52 +00:00
{
name = "buildkite-agent";
meta.maintainers = with lib.maintainers; [ flokli ];
2020-01-19 20:50:52 +00:00
2022-03-20 23:15:30 +00:00
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");
};
2020-01-19 20:50:52 +00:00
};
};
testScript = ''
start_all()
2020-01-19 20:50:52 +00:00
# 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")
2020-01-19 20:50:52 +00:00
'';
})