borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 1 | # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | """Create a CL to update the SKP version.""" |
| 6 | |
| 7 | |
| 8 | import argparse |
| 9 | import os |
| 10 | import subprocess |
| 11 | import sys |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 12 | import urllib2 |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 13 | |
Ravi Mistry | bd2d111 | 2016-11-17 08:13:51 -0500 | [diff] [blame] | 14 | import git_utils |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 15 | |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 16 | SKIA_COMMITTER_EMAIL = 'update-skps@skia.org' |
| 17 | SKIA_COMMITTER_NAME = 'UpdateSKPs' |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 18 | COMMIT_MSG = '''Update SKP version |
| 19 | |
| 20 | Automatic commit by the RecreateSKPs bot. |
| 21 | |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 22 | TBR=%s |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 23 | NO_MERGE_BUILDS |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 24 | ''' % SKIA_COMMITTER_EMAIL |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 25 | SKIA_REPO = 'https://skia.googlesource.com/skia.git' |
| 26 | |
| 27 | |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 28 | def main(target_dir, gitcookies): |
Ravi Mistry | e7d34b1 | 2016-12-06 08:14:12 -0500 | [diff] [blame] | 29 | with git_utils.NewGitCheckout(repository=SKIA_REPO): |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 30 | # First verify that there are no gen_tasks diffs. |
| 31 | gen_tasks = os.path.join(os.getcwd(), 'infra', 'bots', 'gen_tasks.go') |
| 32 | try: |
| 33 | subprocess.check_call(['go', 'run', gen_tasks, '--test']) |
| 34 | except subprocess.CalledProcessError as e: |
| 35 | print >> sys.stderr, ( |
| 36 | 'gen_tasks.go failed, not uploading SKP update:\n\n%s' % e.output) |
| 37 | sys.exit(1) |
borenet | 8a91da9 | 2016-10-18 05:20:26 -0700 | [diff] [blame] | 38 | |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 39 | # Skip GCE Auth in depot_tools/gerrit_utils.py. Use gitcookies instead. |
| 40 | os.environ['SKIP_GCE_AUTH_FOR_GIT'] = 'True' |
| 41 | os.environ['GIT_COOKIES_PATH'] = gitcookies |
Ravi Mistry | 25d540f | 2017-03-20 10:43:26 -0400 | [diff] [blame^] | 42 | os.environ['USE_CIPD_GCE_AUTH'] = 'True' |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 43 | # Upload the new version, land the update CL as the update-skps user. |
| 44 | config_dict = { |
| 45 | 'user.name': SKIA_COMMITTER_NAME, |
| 46 | 'user.email': SKIA_COMMITTER_EMAIL, |
| 47 | 'http.cookiefile': gitcookies, |
| 48 | } |
| 49 | with git_utils.GitLocalConfig(config_dict): |
| 50 | with git_utils.GitBranch(branch_name='update_skp_version', |
| 51 | commit_msg=COMMIT_MSG, |
| 52 | commit_queue=True): |
| 53 | upload_script = os.path.join( |
| 54 | os.getcwd(), 'infra', 'bots', 'assets', 'skp', 'upload.py') |
| 55 | subprocess.check_call(['python', upload_script, '-t', target_dir]) |
| 56 | subprocess.check_call(['go', 'run', gen_tasks]) |
| 57 | subprocess.check_call([ |
| 58 | 'git', 'add', os.path.join('infra', 'bots', 'tasks.json')]) |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 59 | |
| 60 | |
| 61 | if '__main__' == __name__: |
| 62 | parser = argparse.ArgumentParser() |
| 63 | parser.add_argument("--target_dir") |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 64 | parser.add_argument("--gitcookies") |
borenet | 1ed2ae4 | 2016-07-26 11:52:17 -0700 | [diff] [blame] | 65 | args = parser.parse_args() |
Ravi Mistry | badc137 | 2016-11-23 08:38:18 -0500 | [diff] [blame] | 66 | main(args.target_dir, args.gitcookies) |