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

Side by Side Diff: masters/master.chromium.infra.cron/master.cfg

Issue 1921993002: Use correct recipe for git-hash-metrics builder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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 | Annotate | Revision Log
« 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 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright 2015 The Chromium Authors. All rights reserved. 4 # Copyright 2015 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 import config 8 import config
9 import master_site_config 9 import master_site_config
10 10
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), 163 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'),
164 'category': '2codesearch', 164 'category': '2codesearch',
165 }, 165 },
166 { 166 {
167 'name': 'ChromiumOS Codesearch', 167 'name': 'ChromiumOS Codesearch',
168 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), 168 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'),
169 'category': '2codesearch', 169 'category': '2codesearch',
170 }, 170 },
171 { 171 {
172 'name': 'git-hash-metrics', 172 'name': 'git-hash-metrics',
173 'factory': f_annotations.BaseFactory(recipe='git_hash_metric'), 173 'factory': f_annotations.BaseFactory(recipe='infra/git_hash_metric'),
174 'category': '3monitoring', 174 'category': '3monitoring',
175 }, 175 },
176 ]) 176 ])
177 177
178 ####### SCHEDULERS 178 ####### SCHEDULERS
179 179
180 c['schedulers'].extend([ 180 c['schedulers'].extend([
181 # Period is intentionally small so that if a builder fails fast, it also 181 # Period is intentionally small so that if a builder fails fast, it also
182 # gets restarted fast. 182 # gets restarted fast.
183 Periodic( 183 Periodic(
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 sendToInterestedUsers=False, 260 sendToInterestedUsers=False,
261 extraRecipients=['blink-infra+alerts@google.com', 261 extraRecipients=['blink-infra+alerts@google.com',
262 'chrome-troopers+alerts@google.com'], 262 'chrome-troopers+alerts@google.com'],
263 ), 263 ),
264 ]) 264 ])
265 265
266 ####### PROJECT IDENTITY 266 ####### PROJECT IDENTITY
267 267
268 c['projectName'] = ActiveMaster.project_name 268 c['projectName'] = ActiveMaster.project_name
269 c['buildbotURL'] = ActiveMaster.buildbot_url 269 c['buildbotURL'] = ActiveMaster.buildbot_url
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