launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #28824
[Merge] lp:~cjwatson/lpbuildbot/focal into lp:lpbuildbot
Colin Watson has proposed merging lp:~cjwatson/lpbuildbot/focal into lp:lpbuildbot.
Commit message:
Add focal builders.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/lpbuildbot/focal/+merge/426965
Now that the database schema can be initialized on focal, it's worth at least enabling on-demand test runs, although they won't pass yet.
--
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~cjwatson/lpbuildbot/focal into lp:lpbuildbot.
=== modified file 'master.cfg'
--- master.cfg 2021-07-30 16:44:47 +0000
+++ master.cfg 2022-07-15 14:50:03 +0000
@@ -74,6 +74,12 @@
c['schedulers'].append(scheduler.Triggerable(
name='lp-db-devel-bionic',
builderNames=["lp-db-devel-bionic"]))
+c['schedulers'].append(scheduler.Triggerable(
+ name='lp-devel-focal',
+ builderNames=["lp-devel-focal"]))
+c['schedulers'].append(scheduler.Triggerable(
+ name='lp-db-devel-focal',
+ builderNames=["lp-db-devel-focal"]))
####### BUILDERS
@@ -211,6 +217,20 @@
factory=launchpad_test_factory_factory(
'/var/lib/buildbot/slaves/bionic-lxd-worker', 'lptests-bionic'),
locks=[build_lock.access('counting')]),
+ BuilderConfig(
+ name='lp-devel-focal',
+ slavenames=[''],
+ builddir='lp-devel-focal',
+ factory=launchpad_test_factory_factory(
+ '/var/lib/buildbot/slaves/focal-lxd-worker', 'lptests-focal'),
+ locks=[build_lock.access('counting')]),
+ BuilderConfig(
+ name='lp-db-devel-focal',
+ slavenames=[''],
+ builddir='lp-db-devel-focal',
+ factory=launchpad_test_factory_factory(
+ '/var/lib/buildbot/slaves/focal-lxd-worker', 'lptests-focal'),
+ locks=[build_lock.access('counting')]),
]
####### STATUS TARGETS
@@ -233,6 +253,10 @@
'lp-devel-bionic'),
('https://git.launchpad.net/launchpad', 'db-devel',
'lp-db-devel-bionic'),
+ ('https://git.launchpad.net/launchpad', 'master',
+ 'lp-devel-focal'),
+ ('https://git.launchpad.net/launchpad', 'db-devel',
+ 'lp-db-devel-focal'),
]))
# Send email to interested users.
Follow ups