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

Side by Side Diff: buildbot/buildbot_selector.py

Issue 101713002: [MIPS] Upload a toolchain tarball for MIPS after the build step (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Update. Created 7 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
« no previous file with comments | « buildbot/buildbot_pnacl.sh ('k') | buildbot/buildbot_toolchain_mips_trusted.sh » ('j') | 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 # Pnacl toolchain testers 183 # Pnacl toolchain testers
184 'linux-pnacl-x86_64-tests-x86_64': 184 'linux-pnacl-x86_64-tests-x86_64':
185 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-64', 185 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-64',
186 'linux-pnacl-x86_64-tests-x86_32': 186 'linux-pnacl-x86_64-tests-x86_32':
187 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-32', 187 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot x86-32',
188 'linux-pnacl-x86_64-tests-arm': 188 'linux-pnacl-x86_64-tests-arm':
189 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot arm', 189 bash + ' buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot arm',
190 190
191 # MIPS toolchain buildbot. 191 # MIPS toolchain buildbot.
192 'linux-pnacl-x86_32-tests-mips': 192 'linux-pnacl-x86_32-tests-mips':
193 bash + ' tools/trusted_cross_toolchains/' 193 bash + ' buildbot/buildbot_toolchain_mips_trusted.sh',
194 'trusted-toolchain-creator.mipsel.debian.sh nacl_sdk',
195 194
196 # Toolchain trybots. 195 # Toolchain trybots.
197 'nacl-toolchain-precise64-newlib': 196 'nacl-toolchain-precise64-newlib':
198 bash + ' buildbot/buildbot_toolchain.sh linux', 197 bash + ' buildbot/buildbot_toolchain.sh linux',
199 'nacl-toolchain-mac-newlib': bash + ' buildbot/buildbot_toolchain.sh mac', 198 'nacl-toolchain-mac-newlib': bash + ' buildbot/buildbot_toolchain.sh mac',
200 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat', 199 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat',
201 'nacl-toolchain-precise64-newlib-arm': 200 'nacl-toolchain-precise64-newlib-arm':
202 python + ' buildbot/buildbot_toolchain_build.py --trybot', 201 python + ' buildbot/buildbot_toolchain_build.py --trybot',
203 'nacl-toolchain-mac-newlib-arm': 202 'nacl-toolchain-mac-newlib-arm':
204 python + ' buildbot/buildbot_toolchain_build.py --trybot', 203 python + ' buildbot/buildbot_toolchain_build.py --trybot',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 cmd, 353 cmd,
355 ]) 354 ])
356 355
357 print "%s runs: %s\n" % (builder, cmd) 356 print "%s runs: %s\n" % (builder, cmd)
358 retcode = subprocess.call(cmd, env=env, shell=True) 357 retcode = subprocess.call(cmd, env=env, shell=True)
359 sys.exit(retcode) 358 sys.exit(retcode)
360 359
361 360
362 if __name__ == '__main__': 361 if __name__ == '__main__':
363 Main() 362 Main()
OLDNEW
« no previous file with comments | « buildbot/buildbot_pnacl.sh ('k') | buildbot/buildbot_toolchain_mips_trusted.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698