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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 'coverage 32 newlib --coverage'), | 135 'coverage 32 newlib --coverage'), |
136 # Clang trybots. | 136 # Clang trybots. |
137 'nacl-precise_64-newlib-dbg-clang': | 137 'nacl-precise_64-newlib-dbg-clang': |
138 python + ' buildbot/buildbot_standard.py dbg 64 newlib --clang', | 138 python + ' buildbot/buildbot_standard.py dbg 64 newlib --clang', |
139 'nacl-mac10.6-newlib-dbg-clang': | 139 'nacl-mac10.6-newlib-dbg-clang': |
140 python + ' buildbot/buildbot_standard.py dbg 32 newlib --clang', | 140 python + ' buildbot/buildbot_standard.py dbg 32 newlib --clang', |
141 # Pnacl main trybots | 141 # Pnacl main trybots |
142 'nacl-precise_64-newlib-arm_qemu-pnacl': | 142 'nacl-precise_64-newlib-arm_qemu-pnacl': |
143 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu arm', | 143 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu arm', |
144 'nacl-precise_64-newlib-x86_32-pnacl': | 144 'nacl-precise_64-newlib-x86_32-pnacl': |
145 python + ' buildbot/buildbot_pnacl.py opt 32 pnacl', | 145 # python + ' buildbot/buildbot_pnacl.py opt 32 pnacl', |
| 146 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu mips32', |
146 'nacl-precise_64-newlib-x86_64-pnacl': | 147 'nacl-precise_64-newlib-x86_64-pnacl': |
147 python + ' buildbot/buildbot_pnacl.py opt 64 pnacl', | 148 # python + ' buildbot/buildbot_pnacl.py opt 64 pnacl', |
| 149 # bash + ' buildbot/buildbot_toolchain_mips_trusted.sh', |
| 150 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu mips32', |
148 'nacl-precise_64-newlib-mips-pnacl': | 151 'nacl-precise_64-newlib-mips-pnacl': |
149 echo + ' "TODO(mseaborn): add mips"', | 152 # echo + ' "TODO(mseaborn): add mips", |
| 153 bash + ' buildbot/buildbot_pnacl.sh mode-trybot-qemu mips32', |
150 'nacl-arm_opt_panda': | 154 'nacl-arm_opt_panda': |
151 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-try', | 155 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-try', |
152 'nacl-arm_hw_opt_panda': | 156 'nacl-arm_hw_opt_panda': |
153 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-hw-try', | 157 bash + ' buildbot/buildbot_pnacl.sh mode-buildbot-arm-hw-try', |
154 'nacl-mac10.8_newlib_opt_pnacl': | 158 'nacl-mac10.8_newlib_opt_pnacl': |
155 python + ' buildbot/buildbot_pnacl.py opt 32 pnacl', | 159 python + ' buildbot/buildbot_pnacl.py opt 32 pnacl', |
156 'nacl-win7_64_newlib_opt_pnacl': | 160 'nacl-win7_64_newlib_opt_pnacl': |
157 python + ' buildbot/buildbot_pnacl.py opt 64 pnacl', | 161 python + ' buildbot/buildbot_pnacl.py opt 64 pnacl', |
158 # Pnacl spec2k trybots | 162 # Pnacl spec2k trybots |
159 'nacl-precise_64-newlib-x86_32-pnacl-spec': | 163 'nacl-precise_64-newlib-x86_32-pnacl-spec': |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 cmd, | 423 cmd, |
420 ]) | 424 ]) |
421 | 425 |
422 print "%s runs: %s\n" % (builder, cmd) | 426 print "%s runs: %s\n" % (builder, cmd) |
423 retcode = subprocess.call(cmd, env=env, shell=True) | 427 retcode = subprocess.call(cmd, env=env, shell=True) |
424 sys.exit(retcode) | 428 sys.exit(retcode) |
425 | 429 |
426 | 430 |
427 if __name__ == '__main__': | 431 if __name__ == '__main__': |
428 Main() | 432 Main() |
OLD | NEW |