diff --git a/test/buildbot/buildbot_config/master/change_sources.py b/test/buildbot/buildbot_config/master/change_sources.py index 18a40016c..d1714d128 100644 --- a/test/buildbot/buildbot_config/master/change_sources.py +++ b/test/buildbot/buildbot_config/master/change_sources.py @@ -4,4 +4,5 @@ the build master. """ def get_change_sources(): + # Currently no sources since we're using a GitHub hook return [] diff --git a/test/buildbot/buildbot_config/master/status.py b/test/buildbot/buildbot_config/master/status.py index e47e97a21..944a53725 100644 --- a/test/buildbot/buildbot_config/master/status.py +++ b/test/buildbot/buildbot_config/master/status.py @@ -25,7 +25,8 @@ def get_status(options): web_status = html.WebStatus( http_port = options.web_port, authz = authz, - order_console_by_time = True + order_console_by_time = True, + change_hook_dialects=dict(github=True) ) return [web_status]