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

Side by Side Diff: masters/master.client.v8/master.cfg

Issue 9006008: Add MIPS coverage to V8 build bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | masters/master.client.v8/slaves.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # This is the buildmaster config file for the 'v8' bot. It must 8 # This is the buildmaster config file for the 'v8' bot. It must
9 # be installed as 'master.cfg' in your buildmaster's base directory 9 # be installed as 'master.cfg' in your buildmaster's base directory
10 # (although the filename can be changed with the --basedir option to 10 # (although the filename can be changed with the --basedir option to
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'V8 Mac', 129 'V8 Mac',
130 'V8 Mac - debug', 130 'V8 Mac - debug',
131 'V8 Mac - debug - mozilla', 131 'V8 Mac - debug - mozilla',
132 'V8 Linux - arm - sim', 132 'V8 Linux - arm - sim',
133 'V8 Linux - arm - sim - mozilla', 133 'V8 Linux - arm - sim - mozilla',
134 'V8 Linux - arm - sim - debug', 134 'V8 Linux - arm - sim - debug',
135 'V8 Linux - arm - sim - debug - mozilla - 1', 135 'V8 Linux - arm - sim - debug - mozilla - 1',
136 'V8 Linux - arm - sim - debug - mozilla - 2', 136 'V8 Linux - arm - sim - debug - mozilla - 2',
137 'V8 Linux - arm - sim - debug - sputnik', 137 'V8 Linux - arm - sim - debug - sputnik',
138 'V8 Linux - arm - sim - novfp3', 138 'V8 Linux - arm - sim - novfp3',
139 'V8 Linux - mips - sim',
139 'Vista Perf', 140 'Vista Perf',
140 'Mac10.6 Perf', 141 'Mac10.6 Perf',
141 'Linux Interactive (dbg)', 142 'Linux Interactive (dbg)',
142 'Win Reliability Builder', 143 'Win Reliability Builder',
143 'Webkit', 144 'Webkit',
144 'Webkit Mac', 145 'Webkit Mac',
145 'Webkit Linux', 146 'Webkit Linux',
146 'Webkit Linux 64']) 147 'Webkit Linux 64'])
147 148
148 149
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 'preparser', 505 'preparser',
505 'cctests', 506 'cctests',
506 'd8', 507 'd8',
507 'simulator=arm', 508 'simulator=arm',
508 '--build-tool=scons_v8'], 509 '--build-tool=scons_v8'],
509 shell_flags='@ --noenable-vfp3', 510 shell_flags='@ --noenable-vfp3',
510 tests=['v8testing', 'v8_es5conform', 'sputnik', 'mozilla'], 511 tests=['v8testing', 'v8_es5conform', 'sputnik', 'mozilla'],
511 target='release,debug', 512 target='release,debug',
512 target_arch='arm') 513 target_arch='arm')
513 514
515 f_v8_linux_mips_sim = m_linux.V8Factory(
516 options=['snapshot=on',
517 'preparser',
518 'cctests',
519 'd8',
520 'simulator=mips',
521 '--build-tool=scons_v8'],
522 tests=['v8testing', 'v8_es5conform', 'sputnik'],
523 target_arch='mips')
524
514 f_v8_win32 = m_win32.V8Factory( 525 f_v8_win32 = m_win32.V8Factory(
515 options=['snapshot=on', 526 options=['snapshot=on',
516 'preparser', 527 'preparser',
517 'cctests', 528 'cctests',
518 'd8', 529 'd8',
519 '--build-tool=scons_v8'], 530 '--build-tool=scons_v8'],
520 tests=['v8testing', 'v8_es5conform']) 531 tests=['v8testing', 'v8_es5conform'])
521 532
522 f_v8_win32_mozilla = m_win32.V8Factory( 533 f_v8_win32_mozilla = m_win32.V8Factory(
523 options=['snapshot=on', 534 options=['snapshot=on',
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 'name': 'V8 Linux - nosnap - debug - sputnik', 1107 'name': 'V8 Linux - nosnap - debug - sputnik',
1097 'builddir': 'v8-linux-nosnap-debug-sputnik', 1108 'builddir': 'v8-linux-nosnap-debug-sputnik',
1098 'factory': f_v8_linux_nosnap_debug_sputnik, 1109 'factory': f_v8_linux_nosnap_debug_sputnik,
1099 'category': '1Linux' 1110 'category': '1Linux'
1100 } 1111 }
1101 1112
1102 b_v8_linux_arm_sim = { 1113 b_v8_linux_arm_sim = {
1103 'name': 'V8 Linux - arm - sim', 1114 'name': 'V8 Linux - arm - sim',
1104 'builddir': 'v8-linux-arm-sim', 1115 'builddir': 'v8-linux-arm-sim',
1105 'factory': f_v8_linux_arm_sim, 1116 'factory': f_v8_linux_arm_sim,
1106 'category': '7Arm simulator' 1117 'category': '7Simulators'
1107 } 1118 }
1108 1119
1109 b_v8_linux_arm_sim_mozilla = { 1120 b_v8_linux_arm_sim_mozilla = {
1110 'name': 'V8 Linux - arm - sim - mozilla', 1121 'name': 'V8 Linux - arm - sim - mozilla',
1111 'builddir': 'v8-linux-arm-sim-mozilla', 1122 'builddir': 'v8-linux-arm-sim-mozilla',
1112 'factory': f_v8_linux_arm_sim_mozilla, 1123 'factory': f_v8_linux_arm_sim_mozilla,
1113 'category': '7Arm simulator' 1124 'category': '7Simulators'
1114 } 1125 }
1115 1126
1116 b_v8_linux_arm_sim_debug = { 1127 b_v8_linux_arm_sim_debug = {
1117 'name': 'V8 Linux - arm - sim - debug', 1128 'name': 'V8 Linux - arm - sim - debug',
1118 'builddir': 'v8-linux-arm-sim-debug', 1129 'builddir': 'v8-linux-arm-sim-debug',
1119 'factory': f_v8_linux_arm_sim_debug, 1130 'factory': f_v8_linux_arm_sim_debug,
1120 'category': '7Arm simulator' 1131 'category': '7Simulators'
1121 } 1132 }
1122 1133
1123 b_v8_linux_arm_sim_debug_mozilla_1 = { 1134 b_v8_linux_arm_sim_debug_mozilla_1 = {
1124 'name': 'V8 Linux - arm - sim - debug - mozilla - 1', 1135 'name': 'V8 Linux - arm - sim - debug - mozilla - 1',
1125 'builddir': 'v8-linux-arm-sim-debug-mozilla-1', 1136 'builddir': 'v8-linux-arm-sim-debug-mozilla-1',
1126 'factory': f_v8_linux_arm_sim_debug_mozilla_1, 1137 'factory': f_v8_linux_arm_sim_debug_mozilla_1,
1127 'category': '7Arm simulator' 1138 'category': '7Simulators'
1128 } 1139 }
1129 1140
1130 b_v8_linux_arm_sim_debug_mozilla_2 = { 1141 b_v8_linux_arm_sim_debug_mozilla_2 = {
1131 'name': 'V8 Linux - arm - sim - debug - mozilla - 2', 1142 'name': 'V8 Linux - arm - sim - debug - mozilla - 2',
1132 'builddir': 'v8-linux-arm-sim-debug-mozilla-2', 1143 'builddir': 'v8-linux-arm-sim-debug-mozilla-2',
1133 'factory': f_v8_linux_arm_sim_debug_mozilla_2, 1144 'factory': f_v8_linux_arm_sim_debug_mozilla_2,
1134 'category': '7Arm simulator' 1145 'category': '7Simulators'
1135 } 1146 }
1136 1147
1137 b_v8_linux_arm_sim_debug_sputnik = { 1148 b_v8_linux_arm_sim_debug_sputnik = {
1138 'name': 'V8 Linux - arm - sim - debug - sputnik', 1149 'name': 'V8 Linux - arm - sim - debug - sputnik',
1139 'builddir': 'v8-linux-arm-sim-debug-sputnik', 1150 'builddir': 'v8-linux-arm-sim-debug-sputnik',
1140 'factory': f_v8_linux_arm_sim_debug_sputnik, 1151 'factory': f_v8_linux_arm_sim_debug_sputnik,
1141 'category': '7Arm simulator' 1152 'category': '7Simulators'
1142 } 1153 }
1143 1154
1144 b_v8_linux_arm_sim_novfp3 = { 1155 b_v8_linux_arm_sim_novfp3 = {
1145 'name': 'V8 Linux - arm - sim - novfp3', 1156 'name': 'V8 Linux - arm - sim - novfp3',
1146 'builddir': 'v8-linux-arm-sim-novfp3', 1157 'builddir': 'v8-linux-arm-sim-novfp3',
1147 'factory': f_v8_linux_arm_sim_novfp3, 1158 'factory': f_v8_linux_arm_sim_novfp3,
1148 'category': '7Arm simulator' 1159 'category': '7Simulators'
1160 }
1161
1162 b_v8_linux_mips_sim = {
1163 'name': 'V8 Linux - mips - sim',
1164 'builddir': 'v8-linux-mips-sim',
1165 'factory': f_v8_linux_mips_sim,
1166 'category': '7Simulators'
1149 } 1167 }
1150 1168
1151 b_v8_win32 = { 1169 b_v8_win32 = {
1152 'name': 'V8 Win32', 1170 'name': 'V8 Win32',
1153 'builddir': 'v8-win32', 1171 'builddir': 'v8-win32',
1154 'factory': f_v8_win32, 1172 'factory': f_v8_win32,
1155 'category': '3Windows' 1173 'category': '3Windows'
1156 } 1174 }
1157 1175
1158 b_v8_win32_mozilla = { 1176 b_v8_win32_mozilla = {
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1499 b_v8_mac_debug, 1517 b_v8_mac_debug,
1500 b_v8_mac_debug_mozilla, 1518 b_v8_mac_debug_mozilla,
1501 b_v8_fuzz, 1519 b_v8_fuzz,
1502 b_v8_linux_arm_sim, 1520 b_v8_linux_arm_sim,
1503 b_v8_linux_arm_sim_mozilla, 1521 b_v8_linux_arm_sim_mozilla,
1504 b_v8_linux_arm_sim_debug, 1522 b_v8_linux_arm_sim_debug,
1505 b_v8_linux_arm_sim_debug_mozilla_1, 1523 b_v8_linux_arm_sim_debug_mozilla_1,
1506 b_v8_linux_arm_sim_debug_mozilla_2, 1524 b_v8_linux_arm_sim_debug_mozilla_2,
1507 b_v8_linux_arm_sim_debug_sputnik, 1525 b_v8_linux_arm_sim_debug_sputnik,
1508 b_v8_linux_arm_sim_novfp3, 1526 b_v8_linux_arm_sim_novfp3,
1527 b_v8_linux_mips_sim,
1509 b_webkit_rel_v8, 1528 b_webkit_rel_v8,
1510 b_webkit_rel_mac_v8, 1529 b_webkit_rel_mac_v8,
1511 b_webkit_rel_linux_v8, 1530 b_webkit_rel_linux_v8,
1512 b_v8_win64, 1531 b_v8_win64,
1513 b_v8_linux_isolates, 1532 b_v8_linux_isolates,
1514 b_v8_linux_nosse2, 1533 b_v8_linux_nosse2,
1515 b_v8_linux_nosse3, 1534 b_v8_linux_nosse3,
1516 b_v8_linux_nosse4, 1535 b_v8_linux_nosse4,
1517 b_v8_arm_builder, 1536 b_v8_arm_builder,
1518 b_v8_arm_tester, 1537 b_v8_arm_tester,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 'mstarzinger@chromium.org'], 1592 'mstarzinger@chromium.org'],
1574 lookup=master_utils.FilterDomain()) 1593 lookup=master_utils.FilterDomain())
1575 c['status'].append(mn) 1594 c['status'].append(mn)
1576 1595
1577 ####### PROJECT IDENTITY 1596 ####### PROJECT IDENTITY
1578 1597
1579 # Buildbot master url: 1598 # Buildbot master url:
1580 c['buildbotURL'] = 'http://build.chromium.org/p/client.v8/' 1599 c['buildbotURL'] = 'http://build.chromium.org/p/client.v8/'
1581 c['projectName'] = ActiveMaster.project_name 1600 c['projectName'] = ActiveMaster.project_name
1582 c['projectURL'] = config.Master.project_url 1601 c['projectURL'] = config.Master.project_url
OLDNEW
« no previous file with comments | « no previous file | masters/master.client.v8/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698