OLD | NEW |
1 # This Source Code Form is subject to the terms of the Mozilla Public | 1 # This Source Code Form is subject to the terms of the Mozilla Public |
2 # License, v. 2.0. If a copy of the MPL was not distributed with this | 2 # License, v. 2.0. If a copy of the MPL was not distributed with this |
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
4 | 4 |
| 5 from __future__ import print_function |
| 6 |
5 import os | 7 import os |
6 import re | 8 import re |
7 import codecs | 9 import codecs |
8 import subprocess | 10 import subprocess |
9 import tarfile | 11 import tarfile |
10 import json | 12 import json |
11 | 13 |
12 from packager import readMetadata, getDefaultFileName | 14 from packager import readMetadata, getDefaultFileName |
13 | 15 |
14 | 16 |
(...skipping 23 matching lines...) Expand all Loading... |
38 if os.path.basename(fileinfo.name) in ('.hgtags', '.hgig
nore'): | 40 if os.path.basename(fileinfo.name) in ('.hgtags', '.hgig
nore'): |
39 continue | 41 continue |
40 filedata = repoarchive.extractfile(fileinfo) | 42 filedata = repoarchive.extractfile(fileinfo) |
41 fileinfo.name = re.sub(r'^[^/]+/', prefix, fileinfo.name
) | 43 fileinfo.name = re.sub(r'^[^/]+/', prefix, fileinfo.name
) |
42 archive.addfile(fileinfo, filedata) | 44 archive.addfile(fileinfo, filedata) |
43 finally: | 45 finally: |
44 process.stdout.close() | 46 process.stdout.close() |
45 process.wait() | 47 process.wait() |
46 | 48 |
47 | 49 |
| 50 def repo_has_uncommitted(): |
| 51 """Checks if the given repository is clean""" |
| 52 buff = subprocess.check_output(['hg', 'status']) |
| 53 |
| 54 if len(buff): |
| 55 print('Dirty / uncommitted changes in repository!') |
| 56 return True |
| 57 |
| 58 return False |
| 59 |
| 60 |
| 61 def repo_has_outgoing(): |
| 62 """Checks whether there would be outgoing changesets to the given path""" |
| 63 try: |
| 64 subprocess.check_output(['hg', 'outgoing']) |
| 65 print('Detected outgoing changesets!') |
| 66 return True |
| 67 except subprocess.CalledProcessError as e: |
| 68 if e.returncode == 1: |
| 69 return False |
| 70 raise |
| 71 |
| 72 |
| 73 def repo_has_incoming(repo_paths): |
| 74 """Checks whether the local repositories are up-to-date""" |
| 75 incoming = False |
| 76 |
| 77 for repo_path in repo_paths: |
| 78 try: |
| 79 subprocess.check_output(['hg', 'incoming', '-R', repo_path]) |
| 80 print('Detected incoming changesets in "{}"'.format(repo_path)) |
| 81 incoming = True |
| 82 except subprocess.CalledProcessError as e: |
| 83 if e.returncode != 1: |
| 84 raise |
| 85 |
| 86 return incoming |
| 87 |
| 88 |
| 89 def continue_with_outgoing(): |
| 90 """Asks the user if he wants to continue despite facing warnings""" |
| 91 |
| 92 print('If you proceed with the release, they will be included in the ' |
| 93 'release and pushed.') |
| 94 print('Are you sure about continuing the release-process?') |
| 95 |
| 96 while True: |
| 97 choice = raw_input('Please choose (yes / no): ').lower() |
| 98 |
| 99 if choice == 'yes': |
| 100 return True |
| 101 if choice == 'no': |
| 102 return False |
| 103 |
| 104 |
| 105 def can_safely_release(): |
| 106 """Run repository-checks in order to bail out early if necessary""" |
| 107 if repo_has_uncommitted(): |
| 108 return False |
| 109 if repo_has_incoming(): |
| 110 return False |
| 111 if repo_has_outgoing(): |
| 112 return continue_with_outgoing() |
| 113 |
| 114 |
48 def run(baseDir, type, version, keyFile, downloadsRepo): | 115 def run(baseDir, type, version, keyFile, downloadsRepo): |
| 116 if not can_safely_release(): |
| 117 print('Aborting release.') |
| 118 return 1 |
| 119 |
49 if type == 'gecko': | 120 if type == 'gecko': |
50 import buildtools.packagerGecko as packager | 121 import buildtools.packagerGecko as packager |
51 elif type == 'safari': | 122 elif type == 'safari': |
52 import buildtools.packagerSafari as packager | 123 import buildtools.packagerSafari as packager |
53 elif type == 'edge': | 124 elif type == 'edge': |
54 import buildtools.packagerEdge as packager | 125 import buildtools.packagerEdge as packager |
55 elif type == 'chrome': | 126 elif type == 'chrome': |
56 import buildtools.packagerChrome as packager | 127 import buildtools.packagerChrome as packager |
57 | 128 |
58 # Replace version number in metadata file "manually", ConfigParser will mess | 129 # Replace version number in metadata file "manually", ConfigParser will mess |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 create_sourcearchive(baseDir, archivePath) | 187 create_sourcearchive(baseDir, archivePath) |
117 downloads.append(archivePath) | 188 downloads.append(archivePath) |
118 | 189 |
119 # Now add the downloads and commit | 190 # Now add the downloads and commit |
120 subprocess.check_call(['hg', 'add', '-R', downloadsRepo] + downloads) | 191 subprocess.check_call(['hg', 'add', '-R', downloadsRepo] + downloads) |
121 subprocess.check_call(['hg', 'commit', '-R', downloadsRepo, '-m', 'Releasing
%s %s' % (extensionName, version)]) | 192 subprocess.check_call(['hg', 'commit', '-R', downloadsRepo, '-m', 'Releasing
%s %s' % (extensionName, version)]) |
122 | 193 |
123 # Push all changes | 194 # Push all changes |
124 subprocess.check_call(['hg', 'push', '-R', baseDir]) | 195 subprocess.check_call(['hg', 'push', '-R', baseDir]) |
125 subprocess.check_call(['hg', 'push', '-R', downloadsRepo]) | 196 subprocess.check_call(['hg', 'push', '-R', downloadsRepo]) |
OLD | NEW |