Continuous Integration (CI): Difference between revisions

imported>Mic92
fix syntax
imported>Mic92
Build kite: move to own article
Line 26: Line 26:
=== Build kite ===  
=== Build kite ===  


NixOS comes with a module to run [https://buildkite.com build-kite] agents:
See the [[Buildkite]] article
 
<syntaxHighlight lang=nix>
{
  services.buildkite-agents.builder = {
    enable = true;
    # store a token provided in the  buildkite webinterface in the `Agents` tab under `Agents token`
    tokenPath = "/path/to/token";
    privateSshKeyPath = "/path/to/ssh/key";
  };
}
</syntaxHighlight>
 
[https://nixos.org/nixos/options.html#services.buildkite Further NixOS options]