| 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 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 code_review_site = 'https://chromiumcodereview.appspot.com' | |
| 17 buildslave_version = 'buildbot_slave_8_4' | |
| 18 twisted_version = 'twisted_10_2' | |
| 19 | |
| 20 | |
| 21 class TryServerLinux(_Master4): | |
| 22 project_name = 'chromium.tryserver.linux' | 10 project_name = 'chromium.tryserver.linux' |
| 23 master_port = 8045 | 11 master_port = 8045 |
| 24 slave_port = 8145 | 12 slave_port = 8145 |
| 25 master_port_alt = 8245 | 13 master_port_alt = 8245 |
| 26 try_job_port = 8345 | 14 try_job_port = 8345 |
| 27 # Select tree status urls and codereview location. | 15 # Select tree status urls and codereview location. |
| 28 base_app_url = 'https://chromium-status.appspot.com' | 16 base_app_url = 'https://chromium-status.appspot.com' |
| 29 tree_status_url = base_app_url + '/status' | 17 tree_status_url = base_app_url + '/status' |
| 30 store_revisions_url = base_app_url + '/revisions' | 18 store_revisions_url = base_app_url + '/revisions' |
| 31 last_good_url = base_app_url + '/lkgr' | 19 last_good_url = base_app_url + '/lkgr' |
| 32 svn_url = 'svn://svn.chromium.org/chrome-try/try' | 20 svn_url = 'svn://svn.chromium.org/chrome-try/try' |
| OLD | NEW |