Skip to content

Commit 5a7d14b

Browse files
authored
feat(buildbot): working buildbot on noble (#409)
* feat(buildbot): fix missing file (?) * fix(buildbot): fix awry salt warning * chore(buildbot): default vagrant to noble
1 parent 68ddcbe commit 5a7d14b

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
SERVERS = [
55
"backup-server",
66
{:name => "bugs", :codename => "jammy", :ports => [8080]},
7-
"buildbot",
7+
{:name => "buildbot", :codename => "noble"},
88
"cdn-logs",
99
{:name => "codespeed", :codename => "jammy"},
1010
{:name => "consul", :codename => "jammy"},

salt/buildbot/init.sls

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@ buildbot-user:
4949
- user: buildbot-user
5050
- file: /srv
5151

52+
{# vagrant up fails due to this file not existing (see: https://github.com/python/psf-salt/pull/367#issuecomment-2218636563) #}
53+
/srv/buildbot/master/twistd.log:
54+
file.managed:
55+
- user: buildbot
56+
- group: buildbot
57+
- mode: "0644"
58+
- replace: False
59+
- require:
60+
- git: /srv/buildbot
61+
5262
update-master:
5363
cmd.run:
5464
- runas: buildbot

0 commit comments

Comments
 (0)