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

Side by Side Diff: build/download_sdk_extras.py

Issue 709663002: Add gclient hook to download SDK extras on bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove GSUTIL_PATH for local testing. Created 6 years, 1 month 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 | « DEPS ('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
(Empty)
1 #!/usr/bin/env python
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Script to download sdk/extras packages on the bots from google storage."""
7
8 import os
9 import subprocess
10 import sys
11
12 sys.path.insert(0, os.path.join('android'))
13 from pylib import constants
14
15 GSUTIL_PATH = os.path.join(os.path.dirname(__file__), os.pardir, os.pardir,
nyquist 2014/11/11 19:50:31 is gsutils checkout out into //third_party/gsutil/
navabi 2014/11/11 19:53:23 No. On the bots gsutils is in /b/build/third_party
nyquist 2014/11/11 19:56:53 Is there no other way for referring to buildbot pa
16 os.pardir, os.pardir, os.pardir, 'third_party', 'gsutil', 'gsutil')
17 SDK_EXTRAS_BUCKET = 'gs://chrome-sdk-extras'
18 SDK_EXTRAS_PATH = os.path.join(constants.ANDROID_SDK_ROOT, 'extras')
19
20
21 def GetCmdOutputAndStatus(cmd_lst):
22 process = subprocess.Popen(cmd_lst, stdout=subprocess.PIPE)
23 stdout, _ = process.communicate()
24 return stdout, process.returncode
25
26 def is_buildbot_checkout():
27 if not os.path.exists(GSUTIL_PATH):
28 return False
29 stdout, rc = GetCmdOutputAndStatus([GSUTIL_PATH, 'ls', SDK_EXTRAS_BUCKET])
30 # If successfully read bucket, then this must be a bot with permissions
31 return not rc
32
33 def main():
34 if is_buildbot_checkout():
35 cmd_lst = [GSUTIL_PATH, 'cp', '-r', SDK_EXTRAS_BUCKET, SDK_EXTRAS_PATH]
navabi 2014/11/07 04:21:23 The idea is to put directories in the google bucke
36 stdout, rc = GetCmdOutputAndStatus(cmd_lst)
37 return rc
38 return 0
39
40
41 if __name__ == '__main__':
42 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698