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

Side by Side Diff: build/download_gold_plugin.py

Issue 1246783002: download_gold_plugin.py: Redirect stderr to /dev/null when calling gsutil. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comment Created 5 years, 5 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
« no previous file with comments | « no previous file | 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/env python 1 #!/usr/bin/env python
2 # Copyright 2015 The Chromium Authors. All rights reserved. 2 # Copyright 2015 The Chromium 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 """Script to download LLVM gold plugin from google storage.""" 6 """Script to download LLVM gold plugin from google storage."""
7 7
8 import json 8 import json
9 import os 9 import os
10 import shutil 10 import shutil
(...skipping 17 matching lines...) Expand all
28 CLANG_REVISION = os.popen(CLANG_UPDATE_PY + ' --print-revision').read().rstrip() 28 CLANG_REVISION = os.popen(CLANG_UPDATE_PY + ' --print-revision').read().rstrip()
29 29
30 CLANG_BUCKET = 'gs://chromium-browser-clang/Linux_x64' 30 CLANG_BUCKET = 'gs://chromium-browser-clang/Linux_x64'
31 31
32 def main(): 32 def main():
33 targz_name = 'llvmgold-%s.tgz' % CLANG_REVISION 33 targz_name = 'llvmgold-%s.tgz' % CLANG_REVISION
34 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name) 34 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name)
35 35
36 os.chdir(LLVM_BUILD_PATH) 36 os.chdir(LLVM_BUILD_PATH)
37 37
38 # TODO(pcc): Fix gsutil.py cp url file < /dev/null 2>&0
39 # (currently aborts with exit code 1,
40 # https://github.com/GoogleCloudPlatform/gsutil/issues/289) or change the
41 # stdin->stderr redirect in update.py to do something else (crbug.com/494442).
38 subprocess.check_call(['python', GSUTIL_PATH, 42 subprocess.check_call(['python', GSUTIL_PATH,
39 'cp', remote_path, targz_name]) 43 'cp', remote_path, targz_name],
44 stderr=open('/dev/null', 'w'))
40 subprocess.check_call(['tar', 'xzf', targz_name]) 45 subprocess.check_call(['tar', 'xzf', targz_name])
41 os.remove(targz_name) 46 os.remove(targz_name)
42 return 0 47 return 0
43 48
44 if __name__ == '__main__': 49 if __name__ == '__main__':
45 sys.exit(main()) 50 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698