← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~twom/lpbuildbot/production into lp:lpbuildbot

 

Tom Wardill has proposed merging lp:~twom/lpbuildbot/production into lp:lpbuildbot.

Commit message:
Change webhook url to point to Launchpad Buildbot channel

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~twom/lpbuildbot/production/+merge/399178
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~twom/lpbuildbot/production into lp:lpbuildbot.
=== modified file 'master.cfg'
--- master.cfg	2021-03-01 18:04:15 +0000
+++ master.cfg	2021-03-04 17:51:28 +0000
@@ -18,7 +18,10 @@
 # the buildslave's mktap invocation.
 
 from buildbot.buildslave import BuildSlave
-c['slaves'] = []
+c['slaves'] = [
+    BuildSlave("sluagh", "zuo2uaCh"),
+    BuildSlave("radande", "zuo2uaCh"),
+    ]
 
 # 'slavePortnum' defines the TCP port to listen on. This must match the value
 # configured into the buildslaves (with their --master option)
@@ -167,13 +170,13 @@
 c['builders'] = [
     BuilderConfig(
         name='lp-devel-xenial',
-        slavenames=[''],
+        slavenames=['sluagh'],
         builddir='lp-devel-xenial',
         factory=launchpad_test_factory_factory(
             '/var/lib/buildbot/slaves/xenial-lxd-worker', 'lptests-xenial')),
     BuilderConfig(
         name='lp-db-devel-xenial',
-        slavenames=[''],
+        slavenames=['radande'],
         builddir='lp-db-devel-xenial',
         factory=launchpad_test_factory_factory(
             '/var/lib/buildbot/slaves/xenial-lxd-worker', 'lptests-xenial')),
@@ -193,26 +196,26 @@
             variables={'PYTHON': 'python3'})),
     BuilderConfig(
         name='lp-devel-bionic',
-        slavenames=[''],
+        slavenames=['sluagh'],
         builddir='lp-devel-bionic',
         factory=launchpad_test_factory_factory(
             '/var/lib/buildbot/slaves/bionic-lxd-worker', 'lptests-bionic')),
     BuilderConfig(
         name='lp-db-devel-bionic',
-        slavenames=[''],
+        slavenames=['radande'],
         builddir='lp-db-devel-bionic',
         factory=launchpad_test_factory_factory(
             '/var/lib/buildbot/slaves/bionic-lxd-worker', 'lptests-bionic')),
     BuilderConfig(
         name='lp-devel-bionic-py3',
-        slavenames=[''],
+        slavenames=['sluagh'],
         builddir='lp-devel-bionic-py3',
         factory=launchpad_test_factory_factory(
             '/var/lib/buildbot/slaves/bionic-lxd-worker', 'lptests-bionic',
             variables={'PYTHON': 'python3'})),
     BuilderConfig(
         name='lp-db-devel-bionic-py3',
-        slavenames=[''],
+        slavenames=['radande'],
         builddir='lp-db-devel-bionic-py3',
         factory=launchpad_test_factory_factory(
             '/var/lib/buildbot/slaves/bionic-lxd-worker', 'lptests-bionic',
@@ -259,7 +262,7 @@
 
 # Notify the mattermost channel
 # this is defined in the production config branch
-mattermost_hook_url = None
+mattermost_hook_url = "https://chat.canonical.com/hooks/3wyfo36w5brjtehkhccyj3sofe";
 if mattermost_hook_url:
     import lpbuildbot.mattermost
     c['status'].append(


References