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

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

Issue 2063323002: Create recipe to run find_annotated_tests.py periodically (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add into steps.py 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 unified diff | Download patch
« no previous file with comments | « no previous file | masters/master.chromium.infra.cron/slaves.cfg » ('j') | 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 'auto_reboot' : False, 149 'auto_reboot' : False,
150 'category': '1cron', 150 'category': '1cron',
151 }, 151 },
152 { 152 {
153 'name': 'recipe-autoroller-public', 153 'name': 'recipe-autoroller-public',
154 'factory': f_annotations.BaseFactory('infra/recipe_autoroller_public'), 154 'factory': f_annotations.BaseFactory('infra/recipe_autoroller_public'),
155 'auto_reboot' : True, 155 'auto_reboot' : True,
156 'category': '1cron', 156 'category': '1cron',
157 }, 157 },
158 { 158 {
159 'name': 'Chromium Android Find Annotated Test',
160 'factory': f_annotations.BaseFactory(recipe='find_annonated_tests'),
161 'category': '1cron',
162 {
159 'name': 'Chromium Linux Codesearch', 163 'name': 'Chromium Linux Codesearch',
160 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), 164 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'),
161 'category': '2codesearch', 165 'category': '2codesearch',
162 }, 166 },
163 { 167 {
164 'name': 'ChromiumOS Codesearch', 168 'name': 'ChromiumOS Codesearch',
165 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), 169 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'),
166 'category': '2codesearch', 170 'category': '2codesearch',
167 }, 171 },
168 { 172 {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 branch=None, 210 branch=None,
207 builderNames=['publish_tarball'], 211 builderNames=['publish_tarball'],
208 hour=range(0, 24, 3), 212 hour=range(0, 24, 3),
209 ), 213 ),
210 Nightly( 214 Nightly(
211 name='codesearch-scheduler', 215 name='codesearch-scheduler',
212 branch='master', 216 branch='master',
213 hour=range(0, 24, 4), 217 hour=range(0, 24, 4),
214 minute=0, 218 minute=0,
215 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']), 219 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']),
220 Nightly(
221 name='find_annotated_tests',
222 branch='master',
223 hour=range(0, 24, 4),
224 minute=0,
225 builderNames=['Chromium Android Find Annotated Tests']),
216 226
217 # Trigger this builder on any change anywhere. 227 # Trigger this builder on any change anywhere.
218 AnyBranchScheduler( 228 AnyBranchScheduler(
219 name='git-hash-metrics', 229 name='git-hash-metrics',
220 builderNames=['git-hash-metrics']), 230 builderNames=['git-hash-metrics']),
221 ]) 231 ])
222 232
223 ####### BUILDSLAVES 233 ####### BUILDSLAVES
224 234
225 # Associate the slaves to the builders. The configuration is in slaves.cfg. 235 # Associate the slaves to the builders. The configuration is in slaves.cfg.
(...skipping 30 matching lines...) Expand all
256 sendToInterestedUsers=False, 266 sendToInterestedUsers=False,
257 extraRecipients=['blink-infra+alerts@google.com', 267 extraRecipients=['blink-infra+alerts@google.com',
258 'chrome-troopers+alerts@google.com'], 268 'chrome-troopers+alerts@google.com'],
259 ), 269 ),
260 ]) 270 ])
261 271
262 ####### PROJECT IDENTITY 272 ####### PROJECT IDENTITY
263 273
264 c['projectName'] = ActiveMaster.project_name 274 c['projectName'] = ActiveMaster.project_name
265 c['buildbotURL'] = ActiveMaster.buildbot_url 275 c['buildbotURL'] = ActiveMaster.buildbot_url
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.infra.cron/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698