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

Side by Side Diff: buildbot/buildbot_selector.py

Issue 6883048: Activate buildbot, lucid64-pnacl2, for pnacl. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 8 months 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 | Annotate | Revision Log
« no previous file with comments | « buildbot/buildbot_pnacl1.sh ('k') | no next file » | 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) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 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 10
(...skipping 17 matching lines...) Expand all
28 'lucid32-m32-n32-opt': 'bash buildbot/buildbot_linux.sh opt 32 newlib', 28 'lucid32-m32-n32-opt': 'bash buildbot/buildbot_linux.sh opt 32 newlib',
29 'lucid64-m32-n32-opt': 'bash buildbot/buildbot_linux.sh opt 32 newlib', 29 'lucid64-m32-n32-opt': 'bash buildbot/buildbot_linux.sh opt 32 newlib',
30 'lucid64-m64-n64-dbg': 'bash buildbot/buildbot_linux.sh dbg 64 newlib', 30 'lucid64-m64-n64-dbg': 'bash buildbot/buildbot_linux.sh dbg 64 newlib',
31 'lucid64-m64-n64-opt': 'bash buildbot/buildbot_linux.sh opt 64 newlib', 31 'lucid64-m64-n64-opt': 'bash buildbot/buildbot_linux.sh opt 64 newlib',
32 'lucid32-bare-m32-n32-opt': 'bash buildbot/buildbot_linux.sh opt 32 newlib', 32 'lucid32-bare-m32-n32-opt': 'bash buildbot/buildbot_linux.sh opt 32 newlib',
33 'lucid64-bare-m64-n64-opt': 'bash buildbot/buildbot_linux.sh opt 64 newlib', 33 'lucid64-bare-m64-n64-opt': 'bash buildbot/buildbot_linux.sh opt 64 newlib',
34 'hardy64-marm-narm-dbg': 'bash buildbot/buildbot_arm.sh dbg', 34 'hardy64-marm-narm-dbg': 'bash buildbot/buildbot_arm.sh dbg',
35 'hardy64-marm-narm-opt': 'bash buildbot/buildbot_arm.sh opt', 35 'hardy64-marm-narm-opt': 'bash buildbot/buildbot_arm.sh opt',
36 'arm-marm-narm-test-dbg': 'bash buildbot/buildbot_arm_hw.sh dbg', 36 'arm-marm-narm-test-dbg': 'bash buildbot/buildbot_arm_hw.sh dbg',
37 'arm-marm-narm-test-opt': 'bash buildbot/buildbot_arm_hw.sh opt', 37 'arm-marm-narm-test-opt': 'bash buildbot/buildbot_arm_hw.sh opt',
38 'lucid64-pnacl1': 'bash buildbot/buildbot_pnacl1.sh mode-buildbot', 38 'lucid64-pnacl1': 'bash buildbot/buildbot_pnacl1.sh mode-buildbot-x8632',
39 'lucid64-pnacl2': 'bash buildbot/buildbot_linux.sh opt 64 newlib', 39 'lucid64-pnacl2': 'bash buildbot/buildbot_pnacl1.sh mode-buildbot-x8664',
40 'karmic64-valgrind': 'bash buildbot/buildbot_valgrind.sh', 40 'karmic64-valgrind': 'bash buildbot/buildbot_valgrind.sh',
41 # Coverage. 41 # Coverage.
42 'mac-m32-n32-coverage': 'bash buildbot/buildbot_coverage_mac.sh', 42 'mac-m32-n32-coverage': 'bash buildbot/buildbot_coverage_mac.sh',
43 'hardy64-m32-n32-coverage': 'bash buildbot/buildbot_coverage_linux.sh 32', 43 'hardy64-m32-n32-coverage': 'bash buildbot/buildbot_coverage_linux.sh 32',
44 'hardy64-m64-n64-coverage': 'bash buildbot/buildbot_coverage_linux.sh 64', 44 'hardy64-m64-n64-coverage': 'bash buildbot/buildbot_coverage_linux.sh 64',
45 'hardy64-marm-narm-coverage': 'bash buildbot/buildbot_coverage_arm.sh', 45 'hardy64-marm-narm-coverage': 'bash buildbot/buildbot_coverage_arm.sh',
46 'xp-m32-n32-coverage': 'buildbot\\buildbot_coverage_win.bat', 46 'xp-m32-n32-coverage': 'buildbot\\buildbot_coverage_win.bat',
47 47
48 # Trybots. 48 # Trybots.
49 'nacl-arm_hw_opt': 'bash buildbot/buildbot_arm_hw.sh opt', 49 'nacl-arm_hw_opt': 'bash buildbot/buildbot_arm_hw.sh opt',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 sys.exit(1) 100 sys.exit(1)
101 101
102 p = subprocess.Popen(cmd, shell=True) 102 p = subprocess.Popen(cmd, shell=True)
103 p.wait() 103 p.wait()
104 104
105 sys.exit(p.returncode) 105 sys.exit(p.returncode)
106 106
107 107
108 if __name__ == '__main__': 108 if __name__ == '__main__':
109 Main() 109 Main()
OLDNEW
« no previous file with comments | « buildbot/buildbot_pnacl1.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698