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

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

Issue 2410843002: Recipe fixes to support try jobs in task scheduler (Closed)
Patch Set: Remove unnecessary import 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 )
340
341 yield (
342 api.test('buildbotless_trybot_gerrit') +
343 api.properties(
344 repository='skia',
345 buildername=buildername,
346 mastername=mastername,
347 slavename=slavename,
348 buildnumber=5,
349 path_config='kitchen',
350 swarm_out_dir='[SWARM_OUT_DIR]',
351 revision='abc123',
352 nobuildbot='True',
353 issue=500,
354 patchset=1,
355 patch_storage='gerrit',
356 gerrit='https://skia-review.googlesource.com')
357 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698