| 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 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 Loading... |
| 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 Loading... |
| 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() |
| OLD | NEW |