Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(802)

Unified Diff: masters/buildbot.tac

Issue 2084383003: Move 'buildbot.tac' and 'buildbot' files to a common directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « masters/buildbot ('k') | masters/master-common-rules.mk » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/buildbot.tac
diff --git a/masters/buildbot.tac b/masters/buildbot.tac
new file mode 100644
index 0000000000000000000000000000000000000000..b7d70d5c0a7503f83956a418daf2fd31f43d0381
--- /dev/null
+++ b/masters/buildbot.tac
@@ -0,0 +1,17 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Common twistd configuration for buildbot.
+
+Use this with:
+ twistd -y buildbot.tac -d path/to/master
+"""
+
+import os
+
+from twisted.application import service
+from buildbot.master import BuildMaster
+
+application = service.Application('buildmaster')
+BuildMaster(os.getcwd(), 'master.cfg').setServiceParent(application)
« no previous file with comments | « masters/buildbot ('k') | masters/master-common-rules.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698