Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: releaseAutomation.py

Issue 29357701: Issue 4548 - Split out Safari and add Edge release automation (Closed)
Patch Set: Addressed feedback Created Oct. 20, 2016, 12:03 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« packagerEdge.py ('K') | « packagerEdge.py ('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
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 import os 5 import os
6 import re 6 import re
7 import codecs 7 import codecs
8 import subprocess 8 import subprocess
9 import tarfile 9 import tarfile
10 import json 10 import json
(...skipping 25 matching lines...) Expand all
36 if os.path.basename(fileinfo.name) in ('.hgtags', '.hgig nore'): 36 if os.path.basename(fileinfo.name) in ('.hgtags', '.hgig nore'):
37 continue 37 continue
38 filedata = repoarchive.extractfile(fileinfo) 38 filedata = repoarchive.extractfile(fileinfo)
39 fileinfo.name = re.sub(r'^[^/]+/', prefix, fileinfo.name ) 39 fileinfo.name = re.sub(r'^[^/]+/', prefix, fileinfo.name )
40 archive.addfile(fileinfo, filedata) 40 archive.addfile(fileinfo, filedata)
41 finally: 41 finally:
42 process.stdout.close() 42 process.stdout.close()
43 process.wait() 43 process.wait()
44 44
45 45
46 def run(baseDir, type, version, keyFiles, downloadsRepo): 46 def run(baseDir, type, version, keyFile, downloadsRepo):
47 if type == 'gecko': 47 if type == 'gecko':
48 import buildtools.packagerGecko as packager 48 import buildtools.packagerGecko as packager
49 elif type == 'safari':
50 import buildtools.packagerSafari as packager
51 elif type == 'edge':
52 import buildtools.packagerEdge as packager
49 elif type == 'chrome': 53 elif type == 'chrome':
50 import buildtools.packagerChrome as packager 54 import buildtools.packagerChrome as packager
51 55
52 # Replace version number in metadata file "manually", ConfigParser will mess 56 # Replace version number in metadata file "manually", ConfigParser will mess
53 # up the order of lines. 57 # up the order of lines.
54 metadata = packager.readMetadata(baseDir, type) 58 metadata = packager.readMetadata(baseDir, type)
55 with open(metadata.option_source('general', 'version'), 'r+b') as file: 59 with open(metadata.option_source('general', 'version'), 'r+b') as file:
56 rawMetadata = file.read() 60 rawMetadata = file.read()
57 rawMetadata = re.sub( 61 rawMetadata = re.sub(
58 r'^(\s*version\s*=\s*).*', r'\g<1>%s' % version, 62 r'^(\s*version\s*=\s*).*', r'\g<1>%s' % version,
(...skipping 15 matching lines...) Expand all
74 locales = packagerGecko.readLocaleMetadata(locales_base, [packagerGecko.defa ultLocale]) 78 locales = packagerGecko.readLocaleMetadata(locales_base, [packagerGecko.defa ultLocale])
75 extensionName = locales[packagerGecko.defaultLocale]['name'] 79 extensionName = locales[packagerGecko.defaultLocale]['name']
76 80
77 # Now commit the change and tag it 81 # Now commit the change and tag it
78 subprocess.check_call(['hg', 'commit', '-R', baseDir, '-m', 'Releasing %s %s ' % (extensionName, version)]) 82 subprocess.check_call(['hg', 'commit', '-R', baseDir, '-m', 'Releasing %s %s ' % (extensionName, version)])
79 subprocess.check_call(['hg', 'tag', '-R', baseDir, '-f', version]) 83 subprocess.check_call(['hg', 'tag', '-R', baseDir, '-f', version])
80 84
81 # Create a release build 85 # Create a release build
82 downloads = [] 86 downloads = []
83 if type == 'gecko': 87 if type == 'gecko':
84 keyFile = keyFiles[0] if keyFiles else None
85 metadata = packager.readMetadata(baseDir, type)
86 buildPath = os.path.join(downloadsRepo, packager.getDefaultFileName(meta data, version, 'xpi')) 88 buildPath = os.path.join(downloadsRepo, packager.getDefaultFileName(meta data, version, 'xpi'))
87 packager.createBuild(baseDir, type=type, outFile=buildPath, releaseBuild =True, keyFile=keyFile) 89 packager.createBuild(baseDir, type=type, outFile=buildPath, releaseBuild =True, keyFile=None)
Wladimir Palant 2016/10/22 20:12:51 Please don't just remove the value - packagerGecko
kzar 2016/10/25 07:50:51 Done.
88 downloads.append(buildPath) 90 downloads.append(buildPath)
89 elif type == 'chrome': 91 elif type == 'chrome':
90 # We actually have to create three different builds: signed and unsigned 92 # Create both signed and unsigned Chrome builds (the latter for Chrome W eb Store).
91 # Chrome builds (the latter for Chrome Web Store), and a signed Safari b uild.
92 metadata = packager.readMetadata(baseDir, type)
93 buildPath = os.path.join(downloadsRepo, packager.getDefaultFileName(meta data, version, 'crx')) 93 buildPath = os.path.join(downloadsRepo, packager.getDefaultFileName(meta data, version, 'crx'))
94 packager.createBuild(baseDir, type=type, outFile=buildPath, releaseBuild =True, keyFile=keyFiles[0]) 94 packager.createBuild(baseDir, type=type, outFile=buildPath, releaseBuild =True, keyFile=keyFile)
95 downloads.append(buildPath) 95 downloads.append(buildPath)
96 96
97 buildPathUnsigned = os.path.join(baseDir, packager.getDefaultFileName(me tadata, version, 'zip')) 97 buildPathUnsigned = os.path.join(baseDir, packager.getDefaultFileName(me tadata, version, 'zip'))
98 packager.createBuild(baseDir, type=type, outFile=buildPathUnsigned, rele aseBuild=True, keyFile=None) 98 packager.createBuild(baseDir, type=type, outFile=buildPathUnsigned, rele aseBuild=True, keyFile=None)
99 99 elif type == 'safari':
100 import buildtools.packagerSafari as packagerSafari 100 buildPath = os.path.join(downloadsRepo, packager.getDefaultFileName(meta data, version, 'safariextz'))
101 metadataSafari = packagerSafari.readMetadata(baseDir, 'safari') 101 packager.createBuild(baseDir, type='safari', outFile=buildPath, releaseB uild=True, keyFile=keyFile)
102 buildPathSafari = os.path.join(downloadsRepo, packagerSafari.getDefaultF ileName(metadataSafari, version, 'safariextz')) 102 downloads.append(buildPath)
103 packagerSafari.createBuild(baseDir, type='safari', outFile=buildPathSafa ri, releaseBuild=True, keyFile=keyFiles[1]) 103 elif type == 'edge':
104 downloads.append(buildPathSafari) 104 # We only offer the Edge extension for use through the Windows Store
105 buildPath = os.path.join(downloadsRepo, packager.getDefaultFileName(meta data, version, 'appx'))
106 packager.createBuild(baseDir, type=type, outFile=buildPath, releaseBuild =True, keyFile=None)
107 downloads.append(buildPath)
105 108
106 # Create source archive 109 # Create source archive
107 archivePath = os.path.splitext(buildPath)[0] + '-source.tgz' 110 archivePath = os.path.splitext(buildPath)[0] + '-source.tgz'
108 create_sourcearchive(baseDir, archivePath) 111 create_sourcearchive(baseDir, archivePath)
109 downloads.append(archivePath) 112 downloads.append(archivePath)
110 113
111 # Now add the downloads and commit 114 # Now add the downloads and commit
112 subprocess.check_call(['hg', 'add', '-R', downloadsRepo] + downloads) 115 subprocess.check_call(['hg', 'add', '-R', downloadsRepo] + downloads)
113 subprocess.check_call(['hg', 'commit', '-R', downloadsRepo, '-m', 'Releasing %s %s' % (extensionName, version)]) 116 subprocess.check_call(['hg', 'commit', '-R', downloadsRepo, '-m', 'Releasing %s %s' % (extensionName, version)])
114 117
115 # Push all changes 118 # Push all changes
116 subprocess.check_call(['hg', 'push', '-R', baseDir]) 119 subprocess.check_call(['hg', 'push', '-R', baseDir])
117 subprocess.check_call(['hg', 'push', '-R', downloadsRepo]) 120 subprocess.check_call(['hg', 'push', '-R', downloadsRepo])
OLDNEW
« packagerEdge.py ('K') | « packagerEdge.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld