| OLD | NEW |
| 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 Loading... |
| 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 |
| 213 # MIPS toolchain buildbot. |
| 212 'linux-pnacl-x86_32-tests-mips': | 214 'linux-pnacl-x86_32-tests-mips': |
| 213 'bash buildbot/buildbot_pnacl_toolchain_tests.sh tc-test-bot mips', | 215 'bash tools/trusted_cross_toolchains/' |
| 216 'trusted-toolchain-creator.mipsel.debian.sh nacl_sdk', |
| 214 | 217 |
| 215 # Toolchain trybots. | 218 # Toolchain trybots. |
| 216 'nacl-toolchain-lucid64-newlib': | 219 'nacl-toolchain-lucid64-newlib': |
| 217 'bash buildbot/buildbot_toolchain.sh linux', | 220 'bash buildbot/buildbot_toolchain.sh linux', |
| 218 'nacl-toolchain-mac-newlib': 'bash buildbot/buildbot_toolchain.sh mac', | 221 'nacl-toolchain-mac-newlib': 'bash buildbot/buildbot_toolchain.sh mac', |
| 219 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat', | 222 'nacl-toolchain-win7-newlib': 'buildbot\\buildbot_toolchain_win.bat', |
| 220 'nacl-toolchain-lucid64-newlib-arm': | 223 'nacl-toolchain-lucid64-newlib-arm': |
| 221 python + ' buildbot/buildbot_toolchain_build.py --trybot', | 224 python + ' buildbot/buildbot_toolchain_build.py --trybot', |
| 222 'nacl-toolchain-mac-newlib-arm': | 225 'nacl-toolchain-mac-newlib-arm': |
| 223 python + ' buildbot/buildbot_toolchain_build.py --trybot', | 226 python + ' buildbot/buildbot_toolchain_build.py --trybot', |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 else: | 339 else: |
| 337 env['GSUTIL'] = '/b/build/scripts/slave/gsutil' | 340 env['GSUTIL'] = '/b/build/scripts/slave/gsutil' |
| 338 | 341 |
| 339 print "%s runs: %s\n" % (builder, cmd) | 342 print "%s runs: %s\n" % (builder, cmd) |
| 340 retcode = subprocess.call(cmd, env=env, shell=True) | 343 retcode = subprocess.call(cmd, env=env, shell=True) |
| 341 sys.exit(retcode) | 344 sys.exit(retcode) |
| 342 | 345 |
| 343 | 346 |
| 344 if __name__ == '__main__': | 347 if __name__ == '__main__': |
| 345 Main() | 348 Main() |
| OLD | NEW |