OLD | NEW |
---|---|
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 infra.libs.infra_types import freeze | 8 from infra.libs.infra_types import freeze |
9 | 9 |
10 BUILDERS = { | 10 BUILDERS = { |
(...skipping 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1019 ####### Category: FYI | 1019 ####### Category: FYI |
1020 'V8 Linux - vtunejit': { | 1020 'V8 Linux - vtunejit': { |
1021 'chromium_apply_config': ['vtunejit', 'v8_goma'], | 1021 'chromium_apply_config': ['vtunejit', 'v8_goma'], |
1022 'v8_config_kwargs': { | 1022 'v8_config_kwargs': { |
1023 'BUILD_CONFIG': 'Debug', | 1023 'BUILD_CONFIG': 'Debug', |
1024 'TARGET_BITS': 32, | 1024 'TARGET_BITS': 32, |
1025 }, | 1025 }, |
1026 'bot_type': 'builder_tester', | 1026 'bot_type': 'builder_tester', |
1027 'testing': {'platform': 'linux'}, | 1027 'testing': {'platform': 'linux'}, |
1028 }, | 1028 }, |
1029 'V8 Linux - x87 - nosnap - debug builder': { | |
1030 'v8_apply_config': ['no_snapshot'], | |
1031 'chromium_apply_config': ['no_snapshot', 'v8_goma', 'x87'], | |
1032 'v8_config_kwargs': { | |
1033 'BUILD_CONFIG': 'Debug', | |
1034 'TARGET_BITS': 32, | |
1035 }, | |
1036 'bot_type': 'builder', | |
1037 'build_gs_archive': 'linux_x87_nosnap_dbg_archive', | |
1038 'testing': {'platform': 'linux'}, | |
1039 'triggers': [ | |
1040 'V8 Linux - x87 - nosnap - debug', | |
1041 ], | |
1042 }, | |
1029 'V8 Linux - x87 - nosnap - debug': { | 1043 'V8 Linux - x87 - nosnap - debug': { |
1030 'v8_apply_config': ['no_snapshot'], | 1044 'v8_apply_config': ['no_snapshot'], |
1031 'chromium_apply_config': ['no_snapshot', 'v8_goma', 'x87'], | 1045 'chromium_apply_config': ['no_snapshot', 'v8_goma', 'x87'], |
1032 'v8_config_kwargs': { | 1046 'v8_config_kwargs': { |
1033 'BUILD_CONFIG': 'Debug', | 1047 'BUILD_CONFIG': 'Debug', |
1034 'TARGET_BITS': 32, | 1048 'TARGET_BITS': 32, |
1035 }, | 1049 }, |
1036 'bot_type': 'builder_tester', | 1050 'bot_type': 'tester', |
1051 'parent_buildername': 'V8 Linux - debug builder', | |
kjellander_chromium
2015/04/09 09:17:14
This should be 'V8 Linux - x87 - nosnap - debug bu
Michael Achenbach
2015/04/09 09:19:30
Totally :)
| |
1052 'build_gs_archive': 'linux_x87_nosnap_dbg_archive', | |
1037 'tests': ['unittests', 'v8testing'], | 1053 'tests': ['unittests', 'v8testing'], |
1038 'testing': {'platform': 'linux'}, | 1054 'testing': {'platform': 'linux'}, |
1039 }, | 1055 }, |
1040 'V8 Linux - predictable': { | 1056 'V8 Linux - predictable': { |
1041 'v8_apply_config': ['predictable'], | 1057 'v8_apply_config': ['predictable'], |
1042 'chromium_apply_config': ['predictable', 'v8_goma'], | 1058 'chromium_apply_config': ['predictable', 'v8_goma'], |
1043 'v8_config_kwargs': { | 1059 'v8_config_kwargs': { |
1044 'BUILD_CONFIG': 'Release', | 1060 'BUILD_CONFIG': 'Release', |
1045 'TARGET_BITS': 32, | 1061 'TARGET_BITS': 32, |
1046 }, | 1062 }, |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1468 'TARGET_BITS': 32, | 1484 'TARGET_BITS': 32, |
1469 }, | 1485 }, |
1470 'bot_type': 'builder', | 1486 'bot_type': 'builder', |
1471 'build_gs_archive': 'v8_for_dart_archive', | 1487 'build_gs_archive': 'v8_for_dart_archive', |
1472 'testing': {'platform': platform}, | 1488 'testing': {'platform': platform}, |
1473 } for platform in ('win', 'linux', 'mac') | 1489 } for platform in ('win', 'linux', 'mac') |
1474 }} | 1490 }} |
1475 | 1491 |
1476 BUILDERS = freeze(BUILDERS) | 1492 BUILDERS = freeze(BUILDERS) |
1477 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 1493 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
OLD | NEW |