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

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

Issue 761343003: Add recipe support for merged chromium-blink repo FYI bots (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 6 years 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 | scripts/slave/recipe_modules/chromium/steps.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 'chromium_config_optimize': 'chromium_pgo_optimize', 448 'chromium_config_optimize': 'chromium_pgo_optimize',
449 'gclient_config': 'chromium_lkgr', 449 'gclient_config': 'chromium_lkgr',
450 'chromium_config_kwargs': { 450 'chromium_config_kwargs': {
451 'BUILD_CONFIG': 'Release', 451 'BUILD_CONFIG': 'Release',
452 'TARGET_BITS': 32, 452 'TARGET_BITS': 32,
453 }, 453 },
454 'testing': { 454 'testing': {
455 'platform': 'win', 455 'platform': 'win',
456 }, 456 },
457 }, 457 },
458 'ChromiumPractice': {
459 'recipe_config': 'chromium_blink_merged',
460 'chromium_config_kwargs': {
461 'BUILD_CONFIG': 'Release',
462 'TARGET_BITS': 64,
463 },
464 'bot_type': 'builder',
465 'testing': {
466 'platform': 'linux',
467 },
468 },
469 'ChromiumPracticeTester': {
470 'recipe_config': 'chromium_blink_merged',
471 'chromium_config_kwargs': {
472 'BUILD_CONFIG': 'Release',
473 'TARGET_BITS': 64,
474 },
475 'tests': [
476 steps.BlinkTest(),
477 ],
478 'bot_type': 'tester',
479 'parent_buildername': 'ChromiumPractice',
480 'testing': {
481 'platform': 'linux',
482 },
483 },
458 }, 484 },
459 } 485 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698