OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Linux Tryserver definition.""" | 5 """Linux Tryserver definition.""" |
6 | 6 |
7 import socket | 7 from config_bootstrap import Master |
8 | 8 |
9 | 9 class TryServerLinux(Master.Master4): |
10 class _Master4(object): | |
11 """Try server master.""" | |
12 master_host = 'master4.golo.chromium.org' | |
13 is_production_host = socket.getfqdn() == 'master4.golo.chromium.org' | |
14 tree_closing_notification_recipients = [] | |
15 from_address = 'tryserver@chromium.org' | |
16 reply_to = 'chrome-troope%s+tryserver@google.com' % 'rs' | |
17 code_review_site = 'https://chromiumcodereview.appspot.com' | |
18 buildslave_version = 'buildbot_slave_8_4' | |
19 twisted_version = 'twisted_10_2' | |
20 | |
21 | |
22 class TryServerLinux(_Master4): | |
23 project_name = 'chromium.tryserver.linux' | 10 project_name = 'chromium.tryserver.linux' |
24 master_port = 8045 | 11 master_port = 8045 |
25 slave_port = 8145 | 12 slave_port = 8145 |
26 master_port_alt = 8245 | 13 master_port_alt = 8245 |
27 try_job_port = 8345 | 14 try_job_port = 8345 |
28 # Select tree status urls and codereview location. | 15 # Select tree status urls and codereview location. |
29 base_app_url = 'https://chromium-status.appspot.com' | 16 base_app_url = 'https://chromium-status.appspot.com' |
30 tree_status_url = base_app_url + '/status' | 17 tree_status_url = base_app_url + '/status' |
31 store_revisions_url = base_app_url + '/revisions' | 18 store_revisions_url = base_app_url + '/revisions' |
32 last_good_url = base_app_url + '/lkgr' | 19 last_good_url = base_app_url + '/lkgr' |
33 svn_url = 'svn://svn.chromium.org/chrome-try/try' | 20 svn_url = 'svn://svn.chromium.org/chrome-try/try' |
| 21 reply_to = 'chrome-troope%s+tryserver@google.com' % 'rs' |
OLD | NEW |