SSH_KEY_PATH = "/var/lib/buildbot/buildbot_key"
SSH_HOST_KEY = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIFbhFTl2A2RJn5L51yxJM4XfCS2ZaiSX/jo9jFSdghF"
+ BINGO_RELEASE_PATH = "/var/lib/buildbot/outputs/denise/bingo"
+ BINGO_BETA_PATH = "/var/lib/buildbot/outputs/denise/bingo_beta"
+ BINGO_GIT_URL = "gitolite@git.immae.eu:perso/Denise/bingo"
+
OMS_RELEASE_PATH = "/var/lib/buildbot/outputs/denise/oms"
OMS_BETA_PATH = "/var/lib/buildbot/outputs/denise/oms_beta"
OMS_GIT_URL = "gitolite@git.immae.eu:perso/Denise/oms"
}
c['workers'].append(worker.LocalWorker("generic-worker-denise"))
+ c['schedulers'].append(hook_scheduler("DeniseBingo", timer=1))
c['schedulers'].append(hook_scheduler("DeniseOMS", timer=1))
c['schedulers'].append(hook_scheduler("DeniseAventuriers", timer=1))
c['schedulers'].append(force_scheduler("force_denise", [
- "DeniseOMS_build", "DeniseAventuriers_build"
+ "DeniseBingo_build", "DeniseOMS_build", "DeniseAventuriers_build"
]))
c['builders'].append(denise_oms_factory())
+ c['builders'].append(denise_bingo_factory())
c['builders'].append(denise_aventuriers_factory())
+def denise_bingo_factory():
+ @util.renderer
+ def bingo_run_path(props):
+ if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master":
+ return "/run/denise_bingo/gunicorn.pid"
+ else:
+ return "/run/denise_bingo_beta/gunicorn.pid"
+
+ @util.renderer
+ def bingo_systemd_service(props):
+ if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master":
+ return "denise-bingo"
+ else:
+ return "denise-bingo-beta"
+
+ @util.renderer
+ def bingo_url(props):
+ if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master":
+ return "https://bingo.syanni.eu"
+ else:
+ return "https://beta.bingo.syanni.eu"
+
+ @util.renderer
+ def bingo_path(props):
+ if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master":
+ return E.BINGO_RELEASE_PATH
+ else:
+ return E.BINGO_BETA_PATH
+
+ factory = util.BuildFactory()
+ factory.addStep(steps.Git(logEnviron=False, repourl=E.BINGO_GIT_URL,
+ submodules=True, sshPrivateKey=open(E.SSH_KEY_PATH).read().rstrip(),
+ sshHostKey=E.SSH_HOST_KEY, mode="full", method="copy"))
+ factory.addStep(steps.MasterShellCommand(command=util.Interpolate("rm -rf %(kw:bingo_path)s", bingo_path=bingo_path)))
+ factory.addStep(steps.DirectoryUpload(workersrc="../source",
+ masterdest=bingo_path,
+ url=bingo_url))
+ factory.addStep(steps.MasterShellCommand(command=util.Interpolate("chmod -R a+rX %(kw:bingo_path)s", bingo_path=bingo_path)))
+ factory.addStep(steps.MasterShellCommand(command=util.Interpolate("/run/wrappers/bin/sudo systemctl restart %(kw:bingo_service)s.service", bingo_service=bingo_systemd_service)))
+
+ return util.BuilderConfig(name="DeniseBingo_build", workernames=["generic-worker-denise"], factory=factory)
+
def denise_oms_factory():
@util.renderer
def oms_run_path(props):
deniseDenisejeromeProd = ./websites/denise/denisejerome.nix;
deniseEvariste = ./websites/denise/evariste.nix;
deniseOMS = ./websites/denise/oms.nix;
+ deniseBingo = ./websites/denise/bingo.nix;
deniseAventuriers = ./websites/denise/aventuriers.nix;
deniseProduction = ./websites/denise/production.nix;
evariste.enable = true;
denisejerome.enable = true;
oms.enable = true;
+ bingo.enable = true;
aventuriers.enable = true;
production.enable = true;
};
--- /dev/null
+{ lib, config, pkgs, ... }:
+let
+ cfg = config.myServices.websites.denise.bingo;
+ varDir = "/var/lib/buildbot/outputs/denise/bingo";
+ varDirBeta = "/var/lib/buildbot/outputs/denise/bingo_beta";
+ socket = "/run/denise_bingo/socket.sock";
+ socket_beta = "/run/denise_bingo_beta/socket.sock";
+in {
+ options.myServices.websites.denise.bingo.enable = lib.mkEnableOption "enable Denise's bingo website";
+
+ config = lib.mkIf cfg.enable {
+ services.websites.env.production.vhostConfs.denise_bingo = {
+ certName = "denise";
+ addToCerts = true;
+ hosts = [ "bingo.syanni.eu" ];
+ root = null;
+ extraConfig = [
+ ''
+ ProxyPreserveHost on
+ ProxyVia On
+ ProxyRequests Off
+ ProxyPassMatch ^/.well-known/acme-challenge !
+ ProxyPass / unix://${socket}|http://bingo.syanni.eu/
+ ProxyPassReverse / unix://${socket}|http://bingo.syanni.eu/
+ ''
+ ];
+ };
+
+ systemd.services.denise-bingo = {
+ description = "Denise bingo website";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ serviceConfig = {
+ Type = "simple";
+ WorkingDirectory = varDir;
+ ExecStart = let
+ python = pkgs.python3.withPackages (p: [ p.gunicorn p.flask p.matplotlib p.unidecode ]);
+ in
+ "${python}/bin/gunicorn -w4 -p /run/denise_bingo/gunicorn.pid --bind unix:${socket} app:app";
+ User = "wwwrun";
+ Restart = "always";
+ RestartSec = "5s";
+ PIDFile = "/run/denise_bingo/gunicorn.pid";
+ RuntimeDirectory = "denise_bingo";
+ StandardOutput = "journal";
+ StandardError = "inherit";
+ };
+ };
+
+ security.sudo.extraRules = [
+ {
+ commands = [
+ { options = [ "NOPASSWD" ]; command = "${pkgs.systemd}/bin/systemctl restart denise-bingo-beta.service"; }
+ { options = [ "NOPASSWD" ]; command = "${pkgs.systemd}/bin/systemctl restart denise-bingo.service"; }
+ ];
+ users = ["buildbot"];
+ runAs = "root";
+ }
+ ];
+ services.websites.env.integration.vhostConfs.denise_bingo_beta = {
+ certName = "denise";
+ addToCerts = true;
+ hosts = [ "beta.bingo.syanni.eu" ];
+ root = null;
+ extraConfig = [
+ ''
+ ProxyPreserveHost on
+ ProxyVia On
+ ProxyRequests Off
+ ProxyPassMatch ^/.well-known/acme-challenge !
+ ProxyPass / unix://${socket_beta}|http://beta.bingo.syanni.eu/
+ ProxyPassReverse / unix://${socket_beta}|http://beta.bingo.syanni.eu/
+ ''
+ ];
+ };
+
+ systemd.services.denise-bingo-beta = {
+ description = "Denise bingo beta website";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ serviceConfig = {
+ Type = "simple";
+ WorkingDirectory = varDirBeta;
+ ExecStart = let
+ python = pkgs.python3.withPackages (p: [ p.gunicorn p.flask ]);
+ in
+ "${python}/bin/gunicorn -w4 -p /run/denise_bingo_beta/gunicorn.pid --bind unix:${socket_beta} app:app";
+ User = "wwwrun";
+ Restart = "always";
+ RestartSec = "5s";
+ PIDFile = "/run/denise_bingo_beta/gunicorn.pid";
+ RuntimeDirectory = "denise_bingo_beta";
+ StandardOutput = "journal";
+ StandardError = "inherit";
+ };
+ };
+ };
+}