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

Side by Side Diff: infra/bots/recipes/swarm_compile.py

Issue 2410843002: Recipe fixes to support try jobs in task scheduler (Closed)
Patch Set: Fix recipe simulation Created 4 years, 2 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 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 5
6 # Recipe module for Skia Swarming compile. 6 # Recipe module for Skia Swarming compile.
7 7
8 8
9 DEPS = [ 9 DEPS = [
10 'core', 10 'core',
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 buildername=buildername + '-Trybot', 312 buildername=buildername + '-Trybot',
313 mastername=mastername, 313 mastername=mastername,
314 slavename=slavename, 314 slavename=slavename,
315 buildnumber=5, 315 buildnumber=5,
316 path_config='kitchen', 316 path_config='kitchen',
317 swarm_out_dir='[SWARM_OUT_DIR]', 317 swarm_out_dir='[SWARM_OUT_DIR]',
318 revision='abc123', 318 revision='abc123',
319 **gerrit_kwargs) + 319 **gerrit_kwargs) +
320 api.platform('win', 64) 320 api.platform('win', 64)
321 ) 321 )
322
323 yield (
324 api.test('buildbotless_trybot_rietveld') +
325 api.properties(
326 repository='skia',
327 buildername=buildername,
328 mastername=mastername,
329 slavename=slavename,
330 buildnumber=5,
331 path_config='kitchen',
332 swarm_out_dir='[SWARM_OUT_DIR]',
333 revision='abc123',
334 nobuildbot='True',
335 issue=500,
336 patchset=1,
337 patch_storage='rietveld',
338 rietveld='https://codereview.chromium.org') +
339 api.platform('win', 64)
340 )
341
342 yield (
343 api.test('buildbotless_trybot_gerrit') +
344 api.properties(
345 repository='skia',
346 buildername=buildername,
347 mastername=mastername,
348 slavename=slavename,
349 buildnumber=5,
350 path_config='kitchen',
351 swarm_out_dir='[SWARM_OUT_DIR]',
352 revision='abc123',
353 nobuildbot='True',
354 issue=500,
355 patchset=1,
356 patch_storage='gerrit',
357 gerrit='https://skia-review.googlesource.com') +
358 api.platform('win', 64)
359 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698