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

Side by Side Diff: masters/master.chromium.fyi/master_win_drmemory_cfg.py

Issue 1576043002: Use gitiles_poller to poll chromium LKGR branch on Dr. Memory LKGR bots (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from master import gitiles_poller
5 from master import master_config 6 from master import master_config
6 from master import master_utils 7 from master import master_utils
7 from master.factory import chromium_factory 8 from master.factory import chromium_factory
8 9
9 import master_site_config 10 import master_site_config
10 ActiveMaster = master_site_config.ChromiumFYI 11 ActiveMaster = master_site_config.ChromiumFYI
11 12
12 defaults = {} 13 defaults = {}
13 14
14 helper = master_config.Helper(defaults) 15 helper = master_config.Helper(defaults)
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'target_arch=x64'), 72 'target_arch=x64'),
72 'GYP_GENERATORS': 'ninja', 73 'GYP_GENERATORS': 'ninja',
73 }, 74 },
74 'late_cf_archive_build': ActiveMaster.is_production_host, 75 'late_cf_archive_build': ActiveMaster.is_production_host,
75 'cf_archive_name': 'drmemory_x64', 76 'cf_archive_name': 'drmemory_x64',
76 'gs_acl': 'public-read', 77 'gs_acl': 'public-read',
77 'gs_bucket': 'gs://chromium-browser-drfuzz/chromium_win64', 78 'gs_bucket': 'gs://chromium-browser-drfuzz/chromium_win64',
78 })) 79 }))
79 80
80 def Update(_update_config, _active_master, c): 81 def Update(_update_config, _active_master, c):
82 lkgr_poller = gitiles_poller.GitilesPoller(
83 'https://chromium.googlesource.com/chromium/src',
84 branches=['lkgr'])
85 c['change_source'].append(lkgr_poller)
81 return helper.Update(c) 86 return helper.Update(c)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698