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

Side by Side Diff: scripts/slave/recipe_modules/chromium/chromium_fyi.py

Issue 829363004: Move CrWinClang and Tester to recipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: . Created 5 years, 11 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-fyi-archive', 9 'build_gs_bucket': 'chromium-fyi-archive',
10 }, 10 },
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 steps.BlinkTest(), 381 steps.BlinkTest(),
382 ], 382 ],
383 'test_generators': [ 383 'test_generators': [
384 steps.generate_gtest, 384 steps.generate_gtest,
385 steps.generate_script, 385 steps.generate_script,
386 ], 386 ],
387 'testing': { 387 'testing': {
388 'platform': 'linux', 388 'platform': 'linux',
389 }, 389 },
390 }, 390 },
391 'CrWinClang': {
392 'recipe_config': 'chromium_win_clang',
393 'chromium_config_kwargs': {
394 'BUILD_CONFIG': 'Release',
395 'TARGET_BITS': 32,
396 },
397 'bot_type': 'builder',
398 'testing': {
399 'platform': 'win',
400 },
401 },
402 'CrWinClang Tester': {
iannucci 2015/01/14 05:30:08 I think there's a 'Tester' v. 'tester' discrepancy
Nico 2015/01/14 06:03:36 Excellent catch, thanks. Will fix.
403 'recipe_config': 'chromium_win_clang',
404 'chromium_config_kwargs': {
405 'BUILD_CONFIG': 'Release',
406 'TARGET_BITS': 32,
407 },
408 'test_generators': [
409 steps.generate_gtest,
410 ],
411 'bot_type': 'tester',
412 'parent_buildername': 'CrWinClang',
iannucci 2015/01/14 05:30:08 [aside, to no one in particular: WTF is this... we
Paweł Hajdan Jr. 2015/01/14 14:57:03 We don't have that at recipe expectation training
413 'testing': {
414 'platform': 'win',
415 },
416 },
391 }, 417 },
392 } 418 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698