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

Side by Side Diff: buildbot/buildbot_selector.py

Issue 19755007: [MIPS] Run toolchain build on a buildbot (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Rebase. Created 7 years, 4 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 | « no previous file | 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 os 6 import os
7 import subprocess 7 import subprocess
8 import sys 8 import sys
9 9
10 python = sys.executable 10 python = sys.executable
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'win-pnacl-x86_64': 202 'win-pnacl-x86_64':
203 'buildbot\\buildbot_pnacl.bat mode-buildbot-tc-x8664-win false', 203 'buildbot\\buildbot_pnacl.bat mode-buildbot-tc-x8664-win false',
204 204
205 # Pnacl toolchain testers 205 # Pnacl toolchain testers
206 'linux-pnacl-x86_64-tests-x86_64': 206 'linux-pnacl-x86_64-tests-x86_64':
207 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-64', 207 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-64',
208 'linux-pnacl-x86_64-tests-x86_32': 208 'linux-pnacl-x86_64-tests-x86_32':
209 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-32', 209 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-32',
210 'linux-pnacl-x86_64-tests-arm': 210 'linux-pnacl-x86_64-tests-arm':
211 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot arm', 211 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot arm',
212 'linux-pnacl-x86_32-tests-mips': 212 'linux-pnacl-x86_32-tests-mips':
Mark Seaborn 2013/08/07 17:18:34 Since you're changing this so that it isn't a PNaC
petarj 2013/08/07 20:02:13 Done.
213 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot mips', 213 'bash tools/trusted_cross_toolchains/trusted-toolchain-creator.mipsel.de bian.sh chrome_sdk',
Mark Seaborn 2013/08/07 17:18:34 Line is >80 chars -- please fix that
petarj 2013/08/07 20:02:13 Done.
214 #'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot mips',
Mark Seaborn 2013/08/07 17:18:34 Remove the commented-out code
petarj 2013/08/07 20:02:13 Done.
214 215
215 # Toolchain trybots. 216 # Toolchain trybots.
216 'nacl-toolchain-lucid64-newlib': 217 'nacl-toolchain-lucid64-newlib':
217 'bash buildbot/buildbot_toolchain.sh linux', 218 'bash buildbot/buildbot_toolchain.sh linux',
218 'nacl-toolchain-mac-newlib': 'bash buildbot/buildbot_toolchain.sh mac', 219 'nacl-toolchain-mac-newlib': 'bash buildbot/buildbot_toolchain.sh mac',
219 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat', 220 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat',
220 'nacl-toolchain-lucid64-newlib-arm': 221 'nacl-toolchain-lucid64-newlib-arm':
221 python + ' buildbot/buildbot_toolchain_build.py --trybot', 222 python + ' buildbot/buildbot_toolchain_build.py --trybot',
222 'nacl-toolchain-mac-newlib-arm': 223 'nacl-toolchain-mac-newlib-arm':
223 python + ' buildbot/buildbot_toolchain_build.py --trybot', 224 python + ' buildbot/buildbot_toolchain_build.py --trybot',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 else: 337 else:
337 env['GSUTIL'] = '/b/build/scripts/slave/gsutil' 338 env['GSUTIL'] = '/b/build/scripts/slave/gsutil'
338 339
339 print "%s runs: %s\n" % (builder, cmd) 340 print "%s runs: %s\n" % (builder, cmd)
340 retcode = subprocess.call(cmd, env=env, shell=True) 341 retcode = subprocess.call(cmd, env=env, shell=True)
341 sys.exit(retcode) 342 sys.exit(retcode)
342 343
343 344
344 if __name__ == '__main__': 345 if __name__ == '__main__':
345 Main() 346 Main()
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698