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

Side by Side Diff: scripts/slave/recipe_modules/v8/builders.py

Issue 1921603002: V8: Add branch bots for s390 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: A comma Created 4 years, 7 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 # Contains the bulk of the V8 builder configurations so they can be reused 5 # Contains the bulk of the V8 builder configurations so they can be reused
6 # from multiple recipes. 6 # from multiple recipes.
7 7
8 from recipe_engine.types import freeze 8 from recipe_engine.types import freeze
9 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral 9 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral
10 10
(...skipping 2430 matching lines...) Expand 10 before | Expand all | Expand 10 after
2441 name = 'V8 ppc - sim - %s' % branch_name 2441 name = 'V8 ppc - sim - %s' % branch_name
2442 BRANCH_BUILDERS[name] = AddBranchBuilder( 2442 BRANCH_BUILDERS[name] = AddBranchBuilder(
2443 'Release', 'intel', 32, unittests_only=True) 2443 'Release', 'intel', 32, unittests_only=True)
2444 BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_ppc') 2444 BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_ppc')
2445 2445
2446 name = 'V8 ppc64 - sim - %s' % branch_name 2446 name = 'V8 ppc64 - sim - %s' % branch_name
2447 BRANCH_BUILDERS[name] = AddBranchBuilder( 2447 BRANCH_BUILDERS[name] = AddBranchBuilder(
2448 'Release', 'intel', 64, unittests_only=True) 2448 'Release', 'intel', 64, unittests_only=True)
2449 BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_ppc') 2449 BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_ppc')
2450 2450
2451 name = 'V8 s390 - sim - %s' % branch_name
2452 BRANCH_BUILDERS[name] = AddBranchBuilder(
2453 'Release', 'intel', 32, unittests_only=True)
2454 BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_s390')
2455
2456 name = 'V8 s390x - sim - %s' % branch_name
2457 BRANCH_BUILDERS[name] = AddBranchBuilder(
2458 'Release', 'intel', 64, unittests_only=True)
2459 BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_s390')
2460
2451 BUILDERS['client.v8.branches'] = {'builders': BRANCH_BUILDERS} 2461 BUILDERS['client.v8.branches'] = {'builders': BRANCH_BUILDERS}
2452 2462
2453 BUILDERS['client.dart.fyi'] = {'builders': { 2463 BUILDERS['client.dart.fyi'] = {'builders': {
2454 'v8-%s-release' % platform: { 2464 'v8-%s-release' % platform: {
2455 'chromium_apply_config': ['disassembler'], 2465 'chromium_apply_config': ['disassembler'],
2456 'v8_config_kwargs': { 2466 'v8_config_kwargs': {
2457 'BUILD_CONFIG': 'Release', 2467 'BUILD_CONFIG': 'Release',
2458 'TARGET_ARCH': 'intel', 2468 'TARGET_ARCH': 'intel',
2459 'TARGET_BITS': 32, 2469 'TARGET_BITS': 32,
2460 }, 2470 },
(...skipping 15 matching lines...) Expand all
2476 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2486 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2477 2487
2478 BUILDERS = freeze(BUILDERS) 2488 BUILDERS = freeze(BUILDERS)
2479 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2489 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2480 2490
2481 def iter_builders(): 2491 def iter_builders():
2482 for mastername, master_config in BUILDERS.iteritems(): 2492 for mastername, master_config in BUILDERS.iteritems():
2483 builders = master_config['builders'] 2493 builders = master_config['builders']
2484 for buildername, bot_config in builders.iteritems(): 2494 for buildername, bot_config in builders.iteritems():
2485 yield mastername, builders, buildername, bot_config 2495 yield mastername, builders, buildername, bot_config
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698