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

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

Issue 2355483004: Add CIPD GAE SDK recipe module and packager. (Closed)
Patch Set: Go SDKs need architecture. Created 4 years, 3 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
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
iannucci 2016/09/30 21:05:21 This master/slave change should have been a separa
dnj 2016/09/30 22:54:54 Acknowledged.
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
11 from buildbot.scheduler import Periodic 11 from buildbot.scheduler import Periodic
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 'auto_reboot' : False, 157 'auto_reboot' : False,
158 'category': '1cron', 158 'category': '1cron',
159 }, 159 },
160 { 160 {
161 'name': 'w3c-test-autoroller', 161 'name': 'w3c-test-autoroller',
162 'factory': m_remote_run('w3c_test_autoroller'), 162 'factory': m_remote_run('w3c_test_autoroller'),
163 'auto_reboot' : True, 163 'auto_reboot' : True,
164 'category': '1cron', 164 'category': '1cron',
165 }, 165 },
166 { 166 {
167 'name': 'GAE SDK CIPD Packager',
168 'factory': f_annotations.BaseFactory(recipe='infra/gae_sdk_cipd_packager'),
169 'category': '1cron',
170 },
171 {
167 'name': 'Chromium Linux Codesearch', 172 'name': 'Chromium Linux Codesearch',
168 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), 173 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'),
169 'category': '2codesearch', 174 'category': '2codesearch',
170 }, 175 },
171 { 176 {
172 'name': 'ChromiumOS Codesearch', 177 'name': 'ChromiumOS Codesearch',
173 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), 178 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'),
174 'category': '2codesearch', 179 'category': '2codesearch',
175 }, 180 },
176 { 181 {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 branch='master', 219 branch='master',
215 hour=range(0, 24, 4), 220 hour=range(0, 24, 4),
216 minute=0, 221 minute=0,
217 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']), 222 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']),
218 Nightly( 223 Nightly(
219 name='w3c-test-autoroller-scheduler', 224 name='w3c-test-autoroller-scheduler',
220 branch='master', 225 branch='master',
221 hour=[6], 226 hour=[6],
222 minute=0, 227 minute=0,
223 builderNames=['w3c-test-autoroller']), 228 builderNames=['w3c-test-autoroller']),
229 Nightly(
230 name='gae-sdk-scheduler',
231 branch='master',
232 hour=range(0, 24, 4),
iannucci 2016/09/30 21:05:21 so... once every 4 hours?
dnj 2016/09/30 22:54:54 It's a no-op if it fails, so I think that's not un
233 minute=0,
234 builderNames=['GAE SDK CIPD Packager']),
224 235
225 # Trigger this builder on any change anywhere. 236 # Trigger this builder on any change anywhere.
226 AnyBranchScheduler( 237 AnyBranchScheduler(
227 name='git-hash-metrics', 238 name='git-hash-metrics',
228 builderNames=['git-hash-metrics']), 239 builderNames=['git-hash-metrics']),
229 ]) 240 ])
230 241
231 ####### BUILDSLAVES 242 ####### BUILDSLAVES
232 243
233 # Associate the slaves to the builders. The configuration is in slaves.cfg. 244 # Associate the slaves to the builders. The configuration is in slaves.cfg.
(...skipping 30 matching lines...) Expand all
264 sendToInterestedUsers=False, 275 sendToInterestedUsers=False,
265 extraRecipients=['blink-infra+alerts@google.com', 276 extraRecipients=['blink-infra+alerts@google.com',
266 'chrome-troopers+alerts@google.com'], 277 'chrome-troopers+alerts@google.com'],
267 ), 278 ),
268 ]) 279 ])
269 280
270 ####### PROJECT IDENTITY 281 ####### PROJECT IDENTITY
271 282
272 c['projectName'] = ActiveMaster.project_name 283 c['projectName'] = ActiveMaster.project_name
273 c['buildbotURL'] = ActiveMaster.buildbot_url 284 c['buildbotURL'] = ActiveMaster.buildbot_url
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.infra.cron/slaves.cfg » ('j') | scripts/slave/recipe_modules/gae_sdk/api.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698