Revert "buildbot: 0.8.4 -> 0.9.0rc2"

This reverts commit 6c092cd20c.
This commit is contained in:
lassulus 2017-07-23 21:54:11 +02:00
parent 6841ba4855
commit 8580a5a53f
8 changed files with 136 additions and 236 deletions

View File

@ -26,11 +26,12 @@ in {
nix.gc.automatic = true; nix.gc.automatic = true;
nix.gc.dates = "05:23"; nix.gc.dates = "05:23";
networking.firewall.allowedTCPPorts = [ 80 8010 9989 ]; networking.firewall.allowedTCPPorts = [ 80 8010 9989 ];
krebs.buildbot.master = let krebs.buildbot.master = let
stockholm-mirror-url = "http://cgit.${hostname}.r/stockholm" ; stockholm-mirror-url = "http://cgit.${hostname}.r/stockholm" ;
in { in {
workers = { slaves = {
testworker = "krebspass"; testslave = "krebspass";
}; };
change_source.stockholm = '' change_source.stockholm = ''
stockholm_repo = '${stockholm-mirror-url}' stockholm_repo = '${stockholm-mirror-url}'
@ -119,7 +120,7 @@ in {
system={}".format(i)]) system={}".format(i)])
bu.append(util.BuilderConfig(name="fast-tests", bu.append(util.BuilderConfig(name="fast-tests",
workernames=workernames, slavenames=slavenames,
factory=f)) factory=f))
''; '';
@ -131,25 +132,25 @@ in {
bu.append(util.BuilderConfig(name="build-local", bu.append(util.BuilderConfig(name="build-local",
workernames=workernames, slavenames=slavenames,
factory=f)) factory=f))
''; '';
# slow-tests = '' # slow-tests = ''
# s = util.BuildFactory() # s = util.BuildFactory()
# s.addStep(grab_repo) # s.addStep(grab_repo)
# #
# # worker needs 2 files: # # slave needs 2 files:
# # * cac.json # # * cac.json
# # * retiolum # # * retiolum
# s.addStep(steps.FileDownload(mastersrc="${config.krebs.buildbot.master.workDir}/cac.json", workerdest="cac.json")) # s.addStep(steps.FileDownload(mastersrc="${config.krebs.buildbot.master.workDir}/cac.json", slavedest="cac.json"))
# s.addStep(steps.FileDownload(mastersrc="${config.krebs.buildbot.master.workDir}/retiolum-ci.rsa_key.priv", workerdest="retiolum.rsa_key.priv")) # s.addStep(steps.FileDownload(mastersrc="${config.krebs.buildbot.master.workDir}/retiolum-ci.rsa_key.priv", slavedest="retiolum.rsa_key.priv"))
# addShell(s, name="infest-cac-centos7",env=env, # addShell(s, name="infest-cac-centos7",env=env,
# sigtermTime=60, # SIGTERM 1 minute before SIGKILL # sigtermTime=60, # SIGTERM 1 minute before SIGKILL
# timeout=10800, # 3h # timeout=10800, # 3h
# command=nixshell + ["infest-cac-centos7"]) # command=nixshell + ["infest-cac-centos7"])
# #
# bu.append(util.BuilderConfig(name="full-tests", # bu.append(util.BuilderConfig(name="full-tests",
# workernames=workernames, # slavenames=slavenames,
# factory=s)) # factory=s))
# ''; # '';
}; };
@ -161,7 +162,7 @@ in {
enable = true; enable = true;
nick = "${hostname}bot"; nick = "${hostname}bot";
server = "ni.r"; server = "ni.r";
channels = [ { channel = "retiolum"; } ]; channels = [ "retiolum" ];
allowForce = true; allowForce = true;
}; };
extraConfig = '' extraConfig = ''
@ -169,10 +170,10 @@ in {
''; '';
}; };
krebs.buildbot.worker = { krebs.buildbot.slave = {
enable = true; enable = true;
masterhost = "localhost"; masterhost = "localhost";
username = "testworker"; username = "testslave";
password = "krebspass"; password = "krebspass";
packages = with pkgs; [ gnumake jq nix populate ]; packages = with pkgs; [ gnumake jq nix populate ];
# all nix commands will need a working nixpkgs installation # all nix commands will need a working nixpkgs installation

View File

@ -1,11 +0,0 @@
--- ./buildbot_worker/scripts/logwatcher.py 2016-11-10 23:25:46.956000000 +0100
+++ ./buildbot_worker/scripts/logwatcher.py.fix 2016-11-10 23:24:33.225000000 +0100
@@ -76,7 +76,7 @@
if platform.system().lower() == 'sunos' and os.path.exists('/usr/xpg4/bin/tail'):
tailBin = "/usr/xpg4/bin/tail"
else:
- tailBin = "/usr/bin/tail"
+ tailBin = "tail"
self.p = reactor.spawnProcess(self.pp, tailBin,
("tail", "-f", "-n", "0", self.logfile),
env=os.environ,

View File

@ -1,11 +0,0 @@
--- ./buildbot/scripts/logwatcher.py 2016-11-10 23:25:46.956000000 +0100
+++ ./buildbot/scripts/logwatcher.py.fix 2016-11-10 23:24:33.225000000 +0100
@@ -76,7 +76,7 @@
if platform.system().lower() == 'sunos' and os.path.exists('/usr/xpg4/bin/tail'):
tailBin = "/usr/xpg4/bin/tail"
else:
- tailBin = "/usr/bin/tail"
+ tailBin = "tail"
self.p = reactor.spawnProcess(self.pp, tailBin,
("tail", "-f", "-n", "0", self.logfile),
env=os.environ,

View File

@ -3,10 +3,14 @@
with import <stockholm/lib>; with import <stockholm/lib>;
let let
buildbot = pkgs.stdenv.lib.overrideDerivation pkgs.buildbot-full (old:{ # https://github.com/NixOS/nixpkgs/issues/14026
patches = [ ./buildbot.patch ]; nixpkgs-fix = import (pkgs.fetchgit {
propagatedBuildInputs = old.propagatedBuildInputs ++ [ pkgs.coreutils ]; url = https://github.com/nixos/nixpkgs;
}); rev = "e026b5c243ea39810826e68362718f5d703fb5d0";
sha256 = "11lqd480bi6xbi7xbh4krrxmbp6a6iafv1d0q3sj461al0x0has8";
}) {};
buildbot = nixpkgs-fix.buildbot;
buildbot-master-config = pkgs.writeText "buildbot-master.cfg" '' buildbot-master-config = pkgs.writeText "buildbot-master.cfg" ''
# -*- python -*- # -*- python -*-
from buildbot.plugins import * from buildbot.plugins import *
@ -14,11 +18,11 @@ let
import json import json
c = BuildmasterConfig = {} c = BuildmasterConfig = {}
c['workers'] = [] c['slaves'] = []
workers = json.loads('${builtins.toJSON cfg.workers}') slaves = json.loads('${builtins.toJSON cfg.slaves}')
workernames = [ s for s in workers ] slavenames = [ s for s in slaves ]
for k,v in workers.items(): for k,v in slaves.items():
c['workers'].append(worker.Worker(k, v)) c['slaves'].append(buildslave.BuildSlave(k, v))
# TODO: configure protocols? # TODO: configure protocols?
c['protocols'] = {'pb': {'port': 9989}} c['protocols'] = {'pb': {'port': 9989}}
@ -59,45 +63,32 @@ let
####### Status ####### Status
c['services'] = [] c['status'] = st = []
# If you want to configure this url, override with extraConfig # If you want to configure this url, override with extraConfig
c['buildbotURL'] = "http://${config.networking.hostName}:${toString cfg.web.port}/" c['buildbotURL'] = "http://${config.networking.hostName}:${toString cfg.web.port}/"
${optionalString (cfg.web.enable) '' ${optionalString (cfg.web.enable) ''
from buildbot.plugins import util from buildbot.status import html
from buildbot.status.web import authz, auth
#authz_cfg=authz.Authz( authz_cfg=authz.Authz(
# auth=auth.BasicAuth([ ]), auth=auth.BasicAuth([ ("${cfg.web.username}","${cfg.web.password}") ]),
# # TODO: configure harder # TODO: configure harder
# gracefulShutdown = False, gracefulShutdown = False,
# forceBuild = 'auth', forceBuild = 'auth',
# forceAllBuilds = 'auth', forceAllBuilds = 'auth',
# pingBuilder = False, pingBuilder = False,
# stopBuild = 'auth', stopBuild = 'auth',
# stopAllBuilds = 'auth', stopAllBuilds = 'auth',
# cancelPendingBuild = 'auth' cancelPendingBuild = 'auth'
#)
c['www'] = dict(
port = ${toString cfg.web.port},
plugins = { 'waterfall_view':{}, 'console_view':{} }
)
c['www']['auth'] = util.UserPasswordAuth({"${cfg.web.username}":"${cfg.web.password}"})
c['www']['authz'] = util.Authz(
allowRules = [
util.StopBuildEndpointMatcher(role="admins"),
util.ForceBuildEndpointMatcher(role="admins"),
util.RebuildBuildEndpointMatcher(role="admins")
],
roleMatchers = [
util.RolesFromEmails(admins=["${cfg.web.username}"])
]
) )
# TODO: configure krebs.nginx
st.append(html.WebStatus(http_port=${toString cfg.web.port}, authz=authz_cfg))
''} ''}
${optionalString (cfg.irc.enable) '' ${optionalString (cfg.irc.enable) ''
from buildbot.plugins import reporters from buildbot.status import words
irc = reporters.IRC("${cfg.irc.server}", "${cfg.irc.nick}", irc = words.IRC("${cfg.irc.server}", "${cfg.irc.nick}",
channels=${builtins.toJSON cfg.irc.channels}, channels=${builtins.toJSON cfg.irc.channels},
notify_events={ notify_events={
'success': 1, 'success': 1,
@ -106,7 +97,7 @@ let
'successToFailure': 1, 'successToFailure': 1,
'failureToSuccess': 1, 'failureToSuccess': 1,
}${optionalString cfg.irc.allowForce ",allowForce=True"}) }${optionalString cfg.irc.allowForce ",allowForce=True"})
c['services'].append(irc) c['status'].append(irc)
''} ''}
${ concatStringsSep "\n" ${ concatStringsSep "\n"
@ -159,12 +150,12 @@ let
''; '';
}; };
workers = mkOption { slaves = mkOption {
default = {}; default = {};
type = types.attrsOf types.str; type = types.attrsOf types.str;
description = '' description = ''
Attrset of workernames with their passwords Attrset of slavenames with their passwords
workername = workerpassword slavename = slavepassword
''; '';
}; };
@ -292,12 +283,8 @@ let
options = { options = {
enable = mkEnableOption "Buildbot Master IRC Status"; enable = mkEnableOption "Buildbot Master IRC Status";
channels = mkOption { channels = mkOption {
default = [ { channel = "nix-buildbot-meetup";} ]; default = [ "nix-buildbot-meetup" ];
example = literalExample ''[ type = with types; listOf str;
{channel = "nix-buildbot-meetup";}
{channel = "nix-buildbot-lol"; "password" = "lol";}
]'';
type = with types; listOf (attrsOf str);
description = '' description = ''
irc channels the bot should connect to irc channels the bot should connect to
''; '';
@ -346,7 +333,7 @@ let
}; };
users.extraGroups.buildbotMaster = { users.extraGroups.buildbotMaster = {
gid = genid "buildbotMaster"; gid = 672626386;
}; };
systemd.services.buildbotMaster = { systemd.services.buildbotMaster = {
@ -363,6 +350,8 @@ let
secretsdir = shell.escape (toString <secrets>); secretsdir = shell.escape (toString <secrets>);
in { in {
PermissionsStartOnly = true; PermissionsStartOnly = true;
Type = "forking";
PIDFile = "${workdir}/twistd.pid";
# TODO: maybe also prepare buildbot.tac? # TODO: maybe also prepare buildbot.tac?
ExecStartPre = pkgs.writeDash "buildbot-master-init" '' ExecStartPre = pkgs.writeDash "buildbot-master-init" ''
set -efux set -efux
@ -386,8 +375,9 @@ let
chmod 700 -R ${workdir} chmod 700 -R ${workdir}
chown buildbotMaster:buildbotMaster -R ${workdir} chown buildbotMaster:buildbotMaster -R ${workdir}
''; '';
ExecStart = "${buildbot}/bin/buildbot start --nodaemon ${workdir}"; ExecStart = "${buildbot}/bin/buildbot start ${workdir}";
# ExecReload = "${buildbot}/bin/buildbot reconfig ${workdir}"; ExecStop = "${buildbot}/bin/buildbot stop ${workdir}";
ExecReload = "${buildbot}/bin/buildbot reconfig ${workdir}";
PrivateTmp = "true"; PrivateTmp = "true";
User = "buildbotMaster"; User = "buildbotMaster";
Restart = "always"; Restart = "always";

View File

@ -2,21 +2,59 @@
with import <stockholm/lib>; with import <stockholm/lib>;
let let
nixpkgs-fix = import (pkgs.fetchgit {
url = https://github.com/nixos/nixpkgs;
rev = "e026b5c243ea39810826e68362718f5d703fb5d0";
sha256 = "11lqd480bi6xbi7xbh4krrxmbp6a6iafv1d0q3sj461al0x0has8";
}) {};
buildbot-slave-init = pkgs.writeText "buildbot-slave.tac" ''
import os
from buildslave.bot import BuildSlave
from twisted.application import service
basedir = '${cfg.workDir}'
rotateLength = 10000000
maxRotatedFiles = 10
application = service.Application('buildslave')
from twisted.python.logfile import LogFile
from twisted.python.log import ILogObserver, FileLogObserver
logfile = LogFile.fromFullPath(os.path.join(basedir, "twistd.log"), rotateLength=rotateLength,
maxRotatedFiles=maxRotatedFiles)
application.setComponent(ILogObserver, FileLogObserver(logfile).emit)
buildmaster_host = '${cfg.masterhost}'
# TODO: masterport?
port = 9989
slavename = '${cfg.username}'
passwd = '${cfg.password}'
keepalive = 600
usepty = 0
umask = None
maxdelay = 300
allow_shutdown = None
${cfg.extraConfig}
s = BuildSlave(buildmaster_host, port, slavename, passwd, basedir,
keepalive, usepty, umask=umask, maxdelay=maxdelay,
allow_shutdown=allow_shutdown)
s.setServiceParent(application)
'';
default-packages = [ pkgs.git pkgs.bash ]; default-packages = [ pkgs.git pkgs.bash ];
buildbot = pkgs.stdenv.lib.overrideDerivation pkgs.buildbot-worker (old:{ cfg = config.krebs.buildbot.slave;
patches = [ ./buildbot-worker.patch ];
propagatedBuildInputs = old.propagatedBuildInputs ++ [ pkgs.coreutils ];
});
cfg = config.krebs.buildbot.worker;
api = { api = {
enable = mkEnableOption "Buildbot worker"; enable = mkEnableOption "Buildbot Slave";
workDir = mkOption { workDir = mkOption {
default = "/var/lib/buildbot/worker"; default = "/var/lib/buildbot/slave";
type = types.str; type = types.str;
description = '' description = ''
Path to build bot worker directory. Path to build bot slave directory.
Will be created on startup. Will be created on startup.
''; '';
}; };
@ -32,30 +70,30 @@ let
username = mkOption { username = mkOption {
type = types.str; type = types.str;
description = '' description = ''
workername used to authenticate with master slavename used to authenticate with master
''; '';
}; };
password = mkOption { password = mkOption {
type = types.str; type = types.str;
description = '' description = ''
worker password used to authenticate with master slave password used to authenticate with master
''; '';
}; };
contact = mkOption { contact = mkOption {
default = "nix worker <buildworker@${config.networking.hostName}>"; default = "nix slave <buildslave@${config.networking.hostName}>";
type = types.str; type = types.str;
description = '' description = ''
contact to be announced by buildworker contact to be announced by buildslave
''; '';
}; };
description = mkOption { description = mkOption {
default = "Nix Generated Buildworker"; default = "Nix Generated BuildSlave";
type = types.str; type = types.str;
description = '' description = ''
description for hostto be announced by buildworker description for hostto be announced by buildslave
''; '';
}; };
@ -63,7 +101,7 @@ let
default = [ pkgs.git ]; default = [ pkgs.git ];
type = with types; listOf package; type = with types; listOf package;
description = '' description = ''
packages which should be in path for buildworker packages which should be in path for buildslave
''; '';
}; };
@ -74,7 +112,7 @@ let
}; };
type = types.attrsOf types.str; type = types.attrsOf types.str;
description = '' description = ''
extra environment variables to be provided to the buildworker service extra environment variables to be provided to the buildslave service
if you need nixpkgs, e.g. for running nix-shell you can set NIX_PATH here. if you need nixpkgs, e.g. for running nix-shell you can set NIX_PATH here.
''; '';
}; };
@ -87,26 +125,26 @@ let
keepalive = 600 keepalive = 600
''; '';
description = '' description = ''
extra config evaluated before calling Buildworker init in .tac file extra config evaluated before calling BuildSlave init in .tac file
''; '';
}; };
}; };
imp = { imp = {
users.extraUsers.buildbotworker = { users.extraUsers.buildbotSlave = {
uid = genid "buildbotworker"; uid = genid "buildbotSlave";
description = "Buildbot worker"; description = "Buildbot Slave";
home = cfg.workDir; home = cfg.workDir;
createHome = false; createHome = false;
}; };
users.extraGroups.buildbotworker = { users.extraGroups.buildbotSlave = {
gid = genid "buildbotworker"; gid = 1408105834;
}; };
systemd.services."buildbotworker-${cfg.username}-${cfg.masterhost}" = { systemd.services."buildbotSlave-${cfg.username}-${cfg.masterhost}" = {
description = "Buildbot worker for ${cfg.username}@${cfg.masterhost}"; description = "Buildbot Slave for ${cfg.username}@${cfg.masterhost}";
after = [ "network.target" ]; after = [ "network.target" ];
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
path = default-packages ++ cfg.packages; path = default-packages ++ cfg.packages;
@ -120,28 +158,27 @@ let
workdir = shell.escape cfg.workDir; workdir = shell.escape cfg.workDir;
contact = shell.escape cfg.contact; contact = shell.escape cfg.contact;
description = shell.escape cfg.description; description = shell.escape cfg.description;
masterhost = shell.escape cfg.masterhost; buildbot = nixpkgs-fix.buildbot-slave;
username = shell.escape cfg.username; # TODO:make this
password = shell.escape cfg.password;
in { in {
PermissionsStartOnly = true; PermissionsStartOnly = true;
Type = "forking"; Type = "forking";
PIDFile = "${workdir}/twistd.pid"; PIDFile = "${workdir}/twistd.pid";
ExecStartPre = pkgs.writeDash "buildbot-slave-init" '' # TODO: maybe also prepare buildbot.tac?
ExecStartPre = pkgs.writeDash "buildbot-master-init" ''
set -efux set -efux
mkdir -p ${workdir}/info mkdir -p ${workdir}/info
# TODO: cleanup .tac file? cp ${buildbot-slave-init} ${workdir}/buildbot.tac
${buildbot}/bin/buildbot-worker create-worker ${workdir} ${masterhost} ${username} ${password}
echo ${contact} > ${workdir}/info/admin echo ${contact} > ${workdir}/info/admin
echo ${description} > ${workdir}/info/host echo ${description} > ${workdir}/info/host
chown buildbotworker:buildbotworker -R ${workdir} chown buildbotSlave:buildbotSlave -R ${workdir}
chmod 700 -R ${workdir} chmod 700 -R ${workdir}
''; '';
ExecStart = "${buildbot}/bin/buildbot-worker start ${workdir}"; ExecStart = "${buildbot}/bin/buildslave start ${workdir}";
ExecStop = "${buildbot}/bin/buildbot-worker stop ${workdir}"; ExecStop = "${buildbot}/bin/buildslave stop ${workdir}";
PrivateTmp = "true"; PrivateTmp = "true";
User = "buildbotworker"; User = "buildbotSlave";
Restart = "always"; Restart = "always";
RestartSec = "10"; RestartSec = "10";
}; };
@ -149,6 +186,6 @@ let
}; };
in in
{ {
options.krebs.buildbot.worker = api; options.krebs.buildbot.slave = api;
config = lib.mkIf cfg.enable imp; config = lib.mkIf cfg.enable imp;
} }

View File

@ -1,82 +0,0 @@
{ pkgs, stdenv, pythonPackages, fetchurl, coreutils, plugins ? [] }:
pythonPackages.buildPythonApplication (rec {
name = "${pname}-${version}";
pname = "buildbot";
version = "0.9.4";
src = fetchurl {
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
sha256 = "0wklrn4fszac9wi8zw3vbsznwyff6y57cz0i81zvh46skb6n3086";
};
doCheck = false;
buildInputs = with pythonPackages; [
lz4
txrequests
pyjade
boto3
moto
txgithub
mock
setuptoolsTrial
isort
pylint
astroid
pyflakes
pyjwt
];
propagatedBuildInputs = with pythonPackages; [
# core
twisted
jinja2
zope_interface
future
sqlalchemy
sqlalchemy_migrate
future
dateutil
txaio
autobahn
# tls
pyopenssl
service-identity
idna
pkgs.treq
# docs
sphinx
sphinxcontrib-blockdiag
sphinxcontrib-spelling
pyenchant
docutils
ramlfications
sphinx-jinja
] ++ plugins;
preInstall = ''
# writes out a file that can't be read properly
sed -i.bak -e '69,84d' buildbot/test/unit/test_www_config.py
# re-hardcode path to tail
sed -i.bak 's|/usr/bin/tail|${coreutils}/bin/tail|' buildbot/scripts/logwatcher.py
'';
postFixup = ''
mv -v $out/bin/buildbot $out/bin/.wrapped-buildbot
echo "#!/bin/sh" > $out/bin/buildbot
echo "export PYTHONPATH=$PYTHONPATH" >> $out/bin/buildbot
echo "exec $out/bin/.wrapped-buildbot \"\$@\"" >> $out/bin/buildbot
chmod -c 555 $out/bin/buildbot
'';
meta = with stdenv.lib; {
homepage = http://buildbot.net/;
description = "Continuous integration system that automates the build/test cycle";
maintainers = with maintainers; [ nand0p ryansydnor ];
platforms = platforms.all;
license = licenses.gpl2;
};
})

View File

@ -1,24 +0,0 @@
{ pkgs, stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication (rec {
name = "${pname}-${version}";
pname = "buildbot-worker";
version = "0.9.4";
doCheck = false;
src = fetchurl {
url = "mirror://pypi/b/${pname}/${name}.tar.gz";
sha256 = "0rdrr8x7sn2nxl51p6h9ad42s3c28lb6sys84zrg0d7fm4zhv7hj";
};
buildInputs = with pythonPackages; [ setuptoolsTrial mock ];
propagatedBuildInputs = with pythonPackages; [ twisted future pkgs.treq ];
meta = with stdenv.lib; {
homepage = http://buildbot.net/;
description = "Buildbot Worker Daemon";
maintainers = with maintainers; [ nand0p ryansydnor ];
platforms = platforms.all;
license = licenses.gpl2;
};
})

View File

@ -22,8 +22,8 @@ in {
config.krebs.buildbot.master = let config.krebs.buildbot.master = let
stockholm-mirror-url = http://cgit.prism.r/stockholm ; stockholm-mirror-url = http://cgit.prism.r/stockholm ;
in { in {
workers = { slaves = {
testworker = "lasspass"; testslave = "lasspass";
}; };
change_source.stockholm = '' change_source.stockholm = ''
stockholm_repo = '${stockholm-mirror-url}' stockholm_repo = '${stockholm-mirror-url}'
@ -76,7 +76,7 @@ in {
}, },
command=[ command=[
"nix-shell", "--run", "nix-shell", "--run",
"test --system={} --target=buildbotworker@${config.krebs.build.host.name}$HOME/$LOGNAME".format(host) "test --system={} --target=buildbotSlave@${config.krebs.build.host.name}$HOME/$LOGNAME".format(host)
] ]
) )
@ -98,7 +98,7 @@ in {
bu.append( bu.append(
util.BuilderConfig( util.BuilderConfig(
name="build-hosts", name="build-hosts",
workernames=workernames, slavenames=slavenames,
factory=f factory=f
) )
) )
@ -111,7 +111,7 @@ in {
enable = true; enable = true;
nick = "buildbot-lass"; nick = "buildbot-lass";
server = "ni.r"; server = "ni.r";
channels = [ { channel = "retiolum"; } { channel = "noise"; } ]; channels = [ "retiolum" "noise" ];
allowForce = true; allowForce = true;
}; };
extraConfig = '' extraConfig = ''
@ -119,10 +119,10 @@ in {
''; '';
}; };
config.krebs.buildbot.worker = { config.krebs.buildbot.slave = {
enable = true; enable = true;
masterhost = "localhost"; masterhost = "localhost";
username = "testworker"; username = "testslave";
password = "lasspass"; password = "lasspass";
packages = with pkgs; [ gnumake jq nix populate ]; packages = with pkgs; [ gnumake jq nix populate ];
}; };
@ -138,15 +138,15 @@ in {
options.lass.build-ssh-privkey = mkOption { options.lass.build-ssh-privkey = mkOption {
type = types.secret-file; type = types.secret-file;
default = { default = {
path = "${config.users.users.buildbotworker.home}/.ssh/id_rsa"; path = "${config.users.users.buildbotSlave.home}/.ssh/id_rsa";
owner = { inherit (config.users.users.buildbotworker ) name uid;}; owner = { inherit (config.users.users.buildbotSlave ) name uid;};
source-path = toString <secrets> + "/build.ssh.key"; source-path = toString <secrets> + "/build.ssh.key";
}; };
}; };
config.krebs.secret.files = { config.krebs.secret.files = {
build-ssh-privkey = config.lass.build-ssh-privkey; build-ssh-privkey = config.lass.build-ssh-privkey;
}; };
config.users.users.buildbotworker = { config.users.users.buildbotSlave = {
useDefaultShell = true; useDefaultShell = true;
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDiV0Xn60aVLHC/jGJknlrcxSvKd/MVeh2tjBpxSBT3II9XQGZhID2Gdh84eAtoWyxGVFQx96zCHSuc7tfE2YP2LhXnwaxHTeDc8nlMsdww53lRkxihZIEV7QHc/3LRcFMkFyxdszeUfhWz8PbJGL2GYT+s6CqoPwwa68zF33U1wrMOAPsf/NdpSN4alsqmjFc2STBjnOd9dXNQn1VEJQqGLG3kR3WkCuwMcTLS5eu0KLwG4i89Twjy+TGp2QsF5K6pNE+ZepwaycRgfYzGcPTn5d6YQXBgcKgHMoSJsK8wqpr0+eFPCDiEA3HDnf76E4mX4t6/9QkMXCLmvs0IO/WP" "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDiV0Xn60aVLHC/jGJknlrcxSvKd/MVeh2tjBpxSBT3II9XQGZhID2Gdh84eAtoWyxGVFQx96zCHSuc7tfE2YP2LhXnwaxHTeDc8nlMsdww53lRkxihZIEV7QHc/3LRcFMkFyxdszeUfhWz8PbJGL2GYT+s6CqoPwwa68zF33U1wrMOAPsf/NdpSN4alsqmjFc2STBjnOd9dXNQn1VEJQqGLG3kR3WkCuwMcTLS5eu0KLwG4i89Twjy+TGp2QsF5K6pNE+ZepwaycRgfYzGcPTn5d6YQXBgcKgHMoSJsK8wqpr0+eFPCDiEA3HDnf76E4mX4t6/9QkMXCLmvs0IO/WP"