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_pnacl.sh mode-buildbot-mips-toolchain', |
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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 cmd, | 356 cmd, |
358 ]) | 357 ]) |
359 | 358 |
360 print "%s runs: %s\n" % (builder, cmd) | 359 print "%s runs: %s\n" % (builder, cmd) |
361 retcode = subprocess.call(cmd, env=env, shell=True) | 360 retcode = subprocess.call(cmd, env=env, shell=True) |
362 sys.exit(retcode) | 361 sys.exit(retcode) |
363 | 362 |
364 | 363 |
365 if __name__ == '__main__': | 364 if __name__ == '__main__': |
366 Main() | 365 Main() |
OLD | NEW |