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

Side by Side Diff: buildbot/buildbot_selector.py

Issue 427153003: [MIPS] Enhance MIPS testing on its buildbot (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Update. Created 6 years, 2 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
« no previous file with comments | « buildbot/buildbot_pnacl.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import json 6 import json
7 import os 7 import os
8 import subprocess 8 import subprocess
9 import sys 9 import sys
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 'nacl-win32-newlib-coverage': 133 'nacl-win32-newlib-coverage':
134 python + (' buildbot/buildbot_standard.py ' 134 python + (' buildbot/buildbot_standard.py '
135 'coverage 32 newlib --coverage'), 135 'coverage 32 newlib --coverage'),
136 # Clang trybots. 136 # Clang trybots.
137 'nacl-precise_64-newlib-dbg-clang': 137 'nacl-precise_64-newlib-dbg-clang':
138 python + ' buildbot/buildbot_standard.py dbg 64 newlib --clang', 138 python + ' buildbot/buildbot_standard.py dbg 64 newlib --clang',
139 'nacl-mac10.6-newlib-dbg-clang': 139 'nacl-mac10.6-newlib-dbg-clang':
140 python + ' buildbot/buildbot_standard.py dbg 32 newlib --clang', 140 python + ' buildbot/buildbot_standard.py dbg 32 newlib --clang',
141 # Pnacl main trybots 141 # Pnacl main trybots
142 'nacl-precise_64-newlib-arm_qemu-pnacl': 142 'nacl-precise_64-newlib-arm_qemu-pnacl':
143 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu', 143 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu arm',
144 'nacl-precise_64-newlib-x86_32-pnacl': 144 'nacl-precise_64-newlib-x86_32-pnacl':
145 python + ' buildbot/buildbot_pnacl.py opt 32 pnacl', 145 python + ' buildbot/buildbot_pnacl.py opt 32 pnacl',
146 'nacl-precise_64-newlib-x86_64-pnacl': 146 'nacl-precise_64-newlib-x86_64-pnacl':
147 python + ' buildbot/buildbot_pnacl.py opt 64 pnacl', 147 python + ' buildbot/buildbot_pnacl.py opt 64 pnacl',
148 'nacl-precise_64-newlib-mips-pnacl': 148 'nacl-precise_64-newlib-mips-pnacl':
149 echo + ' "TODO(mseaborn): add mips"', 149 echo + ' "TODO(mseaborn): add mips"',
150 'nacl-arm_opt_panda': 150 'nacl-arm_opt_panda':
151 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-try', 151 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-try',
152 'nacl-arm_hw_opt_panda': 152 'nacl-arm_hw_opt_panda':
153 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-hw-try', 153 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-hw-try',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 # Pnacl toolchain testers 214 # Pnacl toolchain testers
215 'linux-pnacl-x86_64-tests-x86_64': 215 'linux-pnacl-x86_64-tests-x86_64':
216 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-64', 216 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-64',
217 'linux-pnacl-x86_64-tests-x86_32': 217 'linux-pnacl-x86_64-tests-x86_32':
218 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-32', 218 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-32',
219 'linux-pnacl-x86_64-tests-arm': 219 'linux-pnacl-x86_64-tests-arm':
220 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot arm', 220 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot arm',
221 221
222 # MIPS toolchain buildbot. 222 # MIPS toolchain buildbot.
223 'linux-pnacl-x86_32-tests-mips': 223 'linux-pnacl-x86_32-tests-mips':
224 bash + ' buildbot/buildbot_toolchain_mips_trusted.sh', 224 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu mips32',
225 225
226 # Toolchain trybots. 226 # Toolchain trybots.
227 'nacl-toolchain-precise64-newlib': 227 'nacl-toolchain-precise64-newlib':
228 bash + ' buildbot/buildbot_toolchain.sh linux', 228 bash + ' buildbot/buildbot_toolchain.sh linux',
229 'nacl-toolchain-mac-newlib': bash + ' buildbot/buildbot_toolchain.sh mac', 229 'nacl-toolchain-mac-newlib': bash + ' buildbot/buildbot_toolchain.sh mac',
230 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat', 230 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat',
231 'nacl-toolchain-precise64-newlib-arm': 231 'nacl-toolchain-precise64-newlib-arm':
232 python + 232 python +
233 ' buildbot/buildbot_toolchain_build.py' 233 ' buildbot/buildbot_toolchain_build.py'
234 ' --trybot' 234 ' --trybot'
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 cmd, 419 cmd,
420 ]) 420 ])
421 421
422 print "%s runs: %s\n" % (builder, cmd) 422 print "%s runs: %s\n" % (builder, cmd)
423 retcode = subprocess.call(cmd, env=env, shell=True) 423 retcode = subprocess.call(cmd, env=env, shell=True)
424 sys.exit(retcode) 424 sys.exit(retcode)
425 425
426 426
427 if __name__ == '__main__': 427 if __name__ == '__main__':
428 Main() 428 Main()
OLDNEW
« no previous file with comments | « buildbot/buildbot_pnacl.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698