update gitea
This commit is contained in:
parent
b494d653ac
commit
097c74d9f2
1 changed files with 13 additions and 1 deletions
|
@ -27,12 +27,24 @@
|
|||
# Domain name under which the buildbot frontend is reachable
|
||||
domain = "orbi.private:8010";
|
||||
admins = [ "palo" ];
|
||||
authBackend = "none";
|
||||
workersFile = pkgs.writeText "workers.json" ''
|
||||
[
|
||||
{ "name": "test", "pass": "password", "cores": 2 }
|
||||
]
|
||||
'';
|
||||
|
||||
# How to authenticate against buildbot
|
||||
authBackend = "none";
|
||||
|
||||
# How to authenticate against gitea
|
||||
gitea = {
|
||||
enable = true;
|
||||
instanceUrl = "https://git.ingolf-wagner.de";
|
||||
webhookSecretFile = pkgs.writeText "gitea-webhook-secret" "my-secret";
|
||||
tokenFile = pkgs.writeText "gitea-token" "my-token";
|
||||
topic = "buildbot";
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue