OLD | NEW |
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 Loading... |
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()) |
OLD | NEW |