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

Side by Side Diff: buildbot/buildbot_selector.py

Issue 10831270: Eliminate build differences in nacl gated on nacl_standalone. Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix Created 8 years, 4 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_lib.py ('k') | src/trusted/nonnacl_util/nonnacl_util.gyp » ('j') | 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) 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 27 matching lines...) Expand all
38 python + ' buildbot\\buildbot_standard.py opt 32 glibc', 38 python + ' buildbot\\buildbot_standard.py opt 32 glibc',
39 'win7-64-bare-newlib-opt': 39 'win7-64-bare-newlib-opt':
40 python + ' buildbot\\buildbot_standard.py opt 64 newlib', 40 python + ' buildbot\\buildbot_standard.py opt 64 newlib',
41 'win7-64-bare-glibc-opt': 41 'win7-64-bare-glibc-opt':
42 python + ' buildbot\\buildbot_standard.py opt 64 glibc', 42 python + ' buildbot\\buildbot_standard.py opt 64 glibc',
43 'mac10.5-newlib-opt': 43 'mac10.5-newlib-opt':
44 macpython27 + ' buildbot/buildbot_standard.py opt 32 newlib', 44 macpython27 + ' buildbot/buildbot_standard.py opt 32 newlib',
45 'mac10.6-newlib-opt': 45 'mac10.6-newlib-opt':
46 python + ' buildbot/buildbot_standard.py opt 32 newlib', 46 python + ' buildbot/buildbot_standard.py opt 32 newlib',
47 'mac10.7-newlib-opt': 47 'mac10.7-newlib-opt':
48 python + ' buildbot/buildbot_standard.py opt 32 newlib', 48 python + ' buildbot/buildbot_standard.py opt 32 newlib --clang',
49 'mac10.5-glibc-opt': 49 'mac10.5-glibc-opt':
50 macpython27 + ' buildbot/buildbot_standard.py opt 32 glibc', 50 macpython27 + ' buildbot/buildbot_standard.py opt 32 glibc',
51 'mac10.6-glibc-opt': 51 'mac10.6-glibc-opt':
52 python + ' buildbot/buildbot_standard.py opt 32 glibc', 52 python + ' buildbot/buildbot_standard.py opt 32 glibc',
53 'mac10.7-glibc-opt': 53 'mac10.7-glibc-opt':
54 python + ' buildbot/buildbot_standard.py opt 32 glibc', 54 python + ' buildbot/buildbot_standard.py opt 32 glibc --clang',
55 'lucid-32-newlib-dbg': 55 'lucid-32-newlib-dbg':
56 python + ' buildbot/buildbot_standard.py dbg 32 newlib', 56 python + ' buildbot/buildbot_standard.py dbg 32 newlib',
57 'lucid-32-newlib-opt': 57 'lucid-32-newlib-opt':
58 python + ' buildbot/buildbot_standard.py opt 32 newlib', 58 python + ' buildbot/buildbot_standard.py opt 32 newlib',
59 'lucid-32-glibc-dbg': 59 'lucid-32-glibc-dbg':
60 python + ' buildbot/buildbot_standard.py dbg 32 glibc', 60 python + ' buildbot/buildbot_standard.py dbg 32 glibc',
61 'lucid-32-glibc-opt': 61 'lucid-32-glibc-opt':
62 python + ' buildbot/buildbot_standard.py opt 32 glibc', 62 python + ' buildbot/buildbot_standard.py opt 32 glibc',
63 'lucid-64-newlib-opt': 63 'lucid-64-newlib-opt':
64 python + ' buildbot/buildbot_standard.py opt 32 newlib', 64 python + ' buildbot/buildbot_standard.py opt 32 newlib',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 python + ' buildbot\\buildbot_standard.py opt 64 glibc', 156 python + ' buildbot\\buildbot_standard.py opt 64 glibc',
157 'nacl-mac10.5_newlib_opt': 157 'nacl-mac10.5_newlib_opt':
158 macpython27 + ' buildbot/buildbot_standard.py opt 32 newlib', 158 macpython27 + ' buildbot/buildbot_standard.py opt 32 newlib',
159 'nacl-mac10.5_glibc_opt': 159 'nacl-mac10.5_glibc_opt':
160 macpython27 + ' buildbot/buildbot_standard.py opt 32 glibc', 160 macpython27 + ' buildbot/buildbot_standard.py opt 32 glibc',
161 'nacl-mac10.6_newlib_opt': 161 'nacl-mac10.6_newlib_opt':
162 python + ' buildbot/buildbot_standard.py opt 32 newlib', 162 python + ' buildbot/buildbot_standard.py opt 32 newlib',
163 'nacl-mac10.6_glibc_opt': 163 'nacl-mac10.6_glibc_opt':
164 python + ' buildbot/buildbot_standard.py opt 32 glibc', 164 python + ' buildbot/buildbot_standard.py opt 32 glibc',
165 'nacl-mac10.7_newlib_opt': 165 'nacl-mac10.7_newlib_opt':
166 python + ' buildbot/buildbot_standard.py opt 32 newlib', 166 python + ' buildbot/buildbot_standard.py opt 32 newlib --clang',
167 'nacl-mac10.7_glibc_opt': 167 'nacl-mac10.7_glibc_opt':
168 python + ' buildbot/buildbot_standard.py opt 32 glibc', 168 python + ' buildbot/buildbot_standard.py opt 32 glibc --clang',
169 'nacl-lucid32_newlib_dbg': 169 'nacl-lucid32_newlib_dbg':
170 python + ' buildbot/buildbot_standard.py dbg 32 newlib', 170 python + ' buildbot/buildbot_standard.py dbg 32 newlib',
171 'nacl-lucid32_newlib_opt': 171 'nacl-lucid32_newlib_opt':
172 python + ' buildbot/buildbot_standard.py opt 32 newlib', 172 python + ' buildbot/buildbot_standard.py opt 32 newlib',
173 'nacl-lucid32_glibc_opt': 173 'nacl-lucid32_glibc_opt':
174 python + ' buildbot/buildbot_standard.py opt 32 glibc', 174 python + ' buildbot/buildbot_standard.py opt 32 glibc',
175 'nacl-lucid64_newlib_dbg': 175 'nacl-lucid64_newlib_dbg':
176 python + ' buildbot/buildbot_standard.py dbg 64 newlib', 176 python + ' buildbot/buildbot_standard.py dbg 64 newlib',
177 'nacl-lucid64_newlib_opt': 177 'nacl-lucid64_newlib_opt':
178 python + ' buildbot/buildbot_standard.py opt 64 newlib', 178 python + ' buildbot/buildbot_standard.py opt 64 newlib',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 env = os.environ.copy() 318 env = os.environ.copy()
319 env['ARCHIVE_IRT'] = builder in IRT_ARCHIVE_BUILDERS and '1' or '0' 319 env['ARCHIVE_IRT'] = builder in IRT_ARCHIVE_BUILDERS and '1' or '0'
320 320
321 print "%s runs: %s\n" % (builder, cmd) 321 print "%s runs: %s\n" % (builder, cmd)
322 retcode = subprocess.call(cmd, env=env, shell=True) 322 retcode = subprocess.call(cmd, env=env, shell=True)
323 sys.exit(retcode) 323 sys.exit(retcode)
324 324
325 325
326 if __name__ == '__main__': 326 if __name__ == '__main__':
327 Main() 327 Main()
OLDNEW
« no previous file with comments | « buildbot/buildbot_lib.py ('k') | src/trusted/nonnacl_util/nonnacl_util.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698