2016-10-21 23:04:48 +02:00
|
|
|
# NixOS module for Buildbot continous integration server.
|
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.buildbot-master;
|
|
|
|
escapeStr = s: escape ["'"] s;
|
2017-01-30 18:44:14 +01:00
|
|
|
masterCfg = if cfg.masterCfg == null then pkgs.writeText "master.cfg" ''
|
2016-10-21 23:04:48 +02:00
|
|
|
from buildbot.plugins import *
|
|
|
|
factory = util.BuildFactory()
|
|
|
|
c = BuildmasterConfig = dict(
|
|
|
|
workers = [${concatStringsSep "," cfg.workers}],
|
|
|
|
protocols = { 'pb': {'port': ${cfg.bpPort} } },
|
|
|
|
title = '${escapeStr cfg.title}',
|
|
|
|
titleURL = '${escapeStr cfg.titleUrl}',
|
|
|
|
buildbotURL = '${escapeStr cfg.buildbotUrl}',
|
|
|
|
db = dict(db_url='${escapeStr cfg.dbUrl}'),
|
|
|
|
www = dict(port=${toString cfg.port}),
|
|
|
|
change_source = [ ${concatStringsSep "," cfg.changeSource} ],
|
|
|
|
schedulers = [ ${concatStringsSep "," cfg.schedulers} ],
|
|
|
|
builders = [ ${concatStringsSep "," cfg.builders} ],
|
|
|
|
status = [ ${concatStringsSep "," cfg.status} ],
|
|
|
|
)
|
|
|
|
for step in [ ${concatStringsSep "," cfg.factorySteps} ]:
|
|
|
|
factory.addStep(step)
|
|
|
|
|
|
|
|
${cfg.extraConfig}
|
2017-01-30 18:44:14 +01:00
|
|
|
''
|
2017-02-27 20:02:11 +01:00
|
|
|
else cfg.masterCfg;
|
2016-10-21 23:04:48 +02:00
|
|
|
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.buildbot-master = {
|
|
|
|
|
|
|
|
factorySteps = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
description = "Factory Steps";
|
|
|
|
default = [];
|
|
|
|
example = [
|
|
|
|
"steps.Git(repourl='git://github.com/buildbot/pyflakes.git', mode='incremental')"
|
|
|
|
"steps.ShellCommand(command=['trial', 'pyflakes'])"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
changeSource = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
description = "List of Change Sources.";
|
|
|
|
default = [];
|
|
|
|
example = [
|
|
|
|
"changes.GitPoller('git://github.com/buildbot/pyflakes.git', workdir='gitpoller-workdir', branch='master', pollinterval=300)"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable the Buildbot continuous integration server.";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "Extra configuration to append to master.cfg";
|
|
|
|
default = "";
|
|
|
|
};
|
|
|
|
|
|
|
|
masterCfg = mkOption {
|
2017-02-27 20:02:11 +01:00
|
|
|
type = types.nullOr types.path;
|
|
|
|
description = "Optionally pass master.cfg path. Other options in this configuration will be ignored.";
|
2016-10-21 23:04:48 +02:00
|
|
|
default = null;
|
2017-02-27 20:02:11 +01:00
|
|
|
example = "/etc/nixos/buildbot/master.cfg";
|
2016-10-21 23:04:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
schedulers = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
description = "List of Schedulers.";
|
|
|
|
default = [
|
|
|
|
"schedulers.SingleBranchScheduler(name='all', change_filter=util.ChangeFilter(branch='master'), treeStableTimer=None, builderNames=['runtests'])"
|
|
|
|
"schedulers.ForceScheduler(name='force',builderNames=['runtests'])"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
builders = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
description = "List of Builders.";
|
|
|
|
default = [
|
2017-02-27 20:02:11 +01:00
|
|
|
"util.BuilderConfig(name='runtests',workernames=['example-worker'],factory=factory)"
|
2016-10-21 23:04:48 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
workers = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
description = "List of Workers.";
|
|
|
|
default = [
|
2017-01-30 18:44:14 +01:00
|
|
|
"worker.Worker('example-worker', 'pass')"
|
2016-10-21 23:04:48 +02:00
|
|
|
];
|
2017-01-30 18:44:14 +01:00
|
|
|
example = [ "worker.LocalWorker('example-worker')" ];
|
2016-10-21 23:04:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
status = mkOption {
|
|
|
|
default = [];
|
|
|
|
type = types.listOf types.str;
|
|
|
|
description = "List of status notification endpoints.";
|
|
|
|
};
|
|
|
|
|
|
|
|
user = mkOption {
|
|
|
|
default = "buildbot";
|
|
|
|
type = types.str;
|
|
|
|
description = "User the buildbot server should execute under.";
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
default = "buildbot";
|
|
|
|
type = types.str;
|
|
|
|
description = "Primary group of buildbot user.";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraGroups = mkOption {
|
|
|
|
type = types.listOf types.str;
|
2017-03-09 17:46:26 +01:00
|
|
|
default = [];
|
2016-10-21 23:04:48 +02:00
|
|
|
description = "List of extra groups that the buildbot user should be a part of.";
|
|
|
|
};
|
|
|
|
|
|
|
|
home = mkOption {
|
|
|
|
default = "/home/buildbot";
|
|
|
|
type = types.path;
|
|
|
|
description = "Buildbot home directory.";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildbotDir = mkOption {
|
|
|
|
default = "${cfg.home}/master";
|
|
|
|
type = types.path;
|
|
|
|
description = "Specifies the Buildbot directory.";
|
|
|
|
};
|
|
|
|
|
|
|
|
bpPort = mkOption {
|
|
|
|
default = "9989";
|
|
|
|
type = types.string;
|
|
|
|
example = "tcp:10000:interface=127.0.0.1";
|
|
|
|
description = "Port where the master will listen to Buildbot Worker.";
|
|
|
|
};
|
|
|
|
|
|
|
|
listenAddress = mkOption {
|
|
|
|
default = "0.0.0.0";
|
|
|
|
type = types.str;
|
|
|
|
description = "Specifies the bind address on which the buildbot HTTP interface listens.";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildbotUrl = mkOption {
|
|
|
|
default = "http://localhost:8010/";
|
|
|
|
type = types.str;
|
|
|
|
description = "Specifies the Buildbot URL.";
|
|
|
|
};
|
|
|
|
|
|
|
|
title = mkOption {
|
|
|
|
default = "Buildbot";
|
|
|
|
type = types.str;
|
|
|
|
description = "Specifies the Buildbot Title.";
|
|
|
|
};
|
|
|
|
|
|
|
|
titleUrl = mkOption {
|
|
|
|
default = "Buildbot";
|
|
|
|
type = types.str;
|
|
|
|
description = "Specifies the Buildbot TitleURL.";
|
|
|
|
};
|
|
|
|
|
|
|
|
dbUrl = mkOption {
|
|
|
|
default = "sqlite:///state.sqlite";
|
|
|
|
type = types.str;
|
|
|
|
description = "Specifies the database connection string.";
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
|
|
|
default = 8010;
|
|
|
|
type = types.int;
|
|
|
|
description = "Specifies port number on which the buildbot HTTP interface listens.";
|
|
|
|
};
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.buildbot-ui;
|
2017-03-07 14:01:50 +01:00
|
|
|
defaultText = "pkgs.buildbot-ui";
|
2017-02-27 20:02:11 +01:00
|
|
|
description = "Package to use for buildbot.";
|
2017-03-07 14:01:50 +01:00
|
|
|
example = literalExample "pkgs.buildbot-full";
|
2016-10-21 23:04:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
packages = mkOption {
|
|
|
|
default = [ ];
|
2017-03-07 14:01:50 +01:00
|
|
|
example = literalExample "[ pkgs.git ]";
|
2016-10-21 23:04:48 +02:00
|
|
|
type = types.listOf types.package;
|
|
|
|
description = "Packages to add to PATH for the buildbot process.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
users.extraGroups = optional (cfg.group == "buildbot") {
|
|
|
|
name = "buildbot";
|
|
|
|
};
|
|
|
|
|
|
|
|
users.extraUsers = optional (cfg.user == "buildbot") {
|
|
|
|
name = "buildbot";
|
2017-01-30 18:44:14 +01:00
|
|
|
description = "Buildbot User.";
|
2016-10-21 23:04:48 +02:00
|
|
|
isNormalUser = true;
|
|
|
|
createHome = true;
|
|
|
|
home = cfg.home;
|
|
|
|
group = cfg.group;
|
|
|
|
extraGroups = cfg.extraGroups;
|
|
|
|
useDefaultShell = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.services.buildbot-master = {
|
2017-01-30 18:44:14 +01:00
|
|
|
description = "Buildbot Continuous Integration Server.";
|
2016-10-21 23:04:48 +02:00
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
path = cfg.packages;
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "forking";
|
|
|
|
User = cfg.user;
|
|
|
|
Group = cfg.group;
|
|
|
|
WorkingDirectory = cfg.home;
|
|
|
|
ExecStart = "${cfg.package}/bin/buildbot start ${cfg.buildbotDir}";
|
|
|
|
};
|
|
|
|
|
|
|
|
preStart = ''
|
2017-01-30 18:44:14 +01:00
|
|
|
${pkgs.coreutils}/bin/mkdir -vp ${cfg.buildbotDir}
|
|
|
|
${pkgs.coreutils}/bin/ln -sfv ${masterCfg} ${cfg.buildbotDir}/master.cfg
|
2016-10-21 23:04:48 +02:00
|
|
|
${cfg.package}/bin/buildbot create-master ${cfg.buildbotDir}
|
|
|
|
'';
|
|
|
|
|
|
|
|
postStart = ''
|
|
|
|
until [[ $(${pkgs.curl}/bin/curl -s --head -w '\n%{http_code}' http://localhost:${toString cfg.port} | tail -n1) =~ ^(200|403)$ ]]; do
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-01-30 18:44:14 +01:00
|
|
|
meta.maintainers = with lib.maintainers; [ nand0p Mic92 ];
|
|
|
|
|
2016-10-21 23:04:48 +02:00
|
|
|
}
|