-
Notifications
You must be signed in to change notification settings - Fork 79
/
release-build.py
executable file
·380 lines (326 loc) · 11.8 KB
/
release-build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
#!/usr/bin/python3
from getpass import getpass
from shutil import copyfile
import subprocess
import os
import sys
import json
buildApkPath = "primitiveFTPd/build/outputs/apk/release/primitiveFTPd-release.apk"
buildBundlePath = "primitiveFTPd/build/outputs/bundle/release/primitiveFTPd-release.aab"
def doGithubUpload(githubToken, uploadUrl, apkPath, name):
subprocess.run([
"curl", "-v",
"-X", "POST",
"-H", "Authorization: token " + githubToken,
"-H", "Accept: application/vnd.github.v3+json",
"-H", "Content-Type: application/octet-stream",
"--data-binary", "@" + apkPath,
uploadUrl + "?name=" + "primitiveFTPd-" + name + ".apk",
], stdout=subprocess.PIPE, check=True)
def doRemoteGithubThings(tagName, tagNameGooglePlay, apkPath, apkPathGoogleplay):
# check if origin uses ssh url
proc = subprocess.run([
"git",
"remote",
"-v"
], stdout=subprocess.PIPE, check=True)
print("found git remotes:")
print(proc.stdout)
print()
isSshUrl = 'origin\tgit@' in proc.stdout.decode('utf8')
# check if GITHUB_TOKEN is set
githubTokenPresent = False
githubToken = None
try:
githubToken = os.environ['GITHUB_TOKEN']
githubTokenPresent = len(githubToken) > 1
except:
dummy=True
milestoneNumber = None
if isSshUrl and githubTokenPresent:
# find github milestone id
proc = subprocess.run([
"gh",
"api",
"/repos/wolpi/prim-ftpd/milestones"
], stdout=subprocess.PIPE, check=True)
milestoneList = json.loads(proc.stdout)
for milestone in milestoneList:
print("checking milestone: " + milestone['title'])
if milestone['title'] == releaseVersion:
milestoneNumber = milestone['number']
break
milestoneFound = milestoneNumber != None
if isSshUrl and githubTokenPresent and milestoneFound:
# push master
print()
print("pushing master")
subprocess.run([
"git",
"push",
"origin",
"master"
], stdout=subprocess.PIPE, check=True)
# push tags
print()
print("pushing tag")
subprocess.run([
"git",
"push",
"origin",
tagName
], stdout=subprocess.PIPE, check=True)
print()
print("pushing tag google play")
subprocess.run([
"git",
"push",
"origin",
tagNameGooglePlay
], stdout=subprocess.PIPE, check=True)
# close milestone
print()
print("closing github milestone")
subprocess.run([
"gh", "api",
"--method", "PATCH",
"-f", "state=closed",
"/repos/wolpi/prim-ftpd/milestones/" + str(milestoneNumber),
], stdout=subprocess.PIPE, check=True)
# create new milestone
print()
print("creating new github milestone")
subprocess.run([
"gh", "api",
"--method", "POST",
"-f", "title=" + str(newVersion),
"/repos/wolpi/prim-ftpd/milestones",
], stdout=subprocess.PIPE, check=True)
# create github release
print()
print("creating github release tagName: " + str(tagName) + ", milestone: " + str(milestoneNumber))
proc = subprocess.run([
"gh", "api",
"/repos/wolpi/prim-ftpd/releases",
"--method", "POST",
"-f", "tag_name='" + str(tagName) + "'",
"-f", "name='" + str(tagName) + "'",
"-f", "body='See [milestone](https://github.com/wolpi/prim-ftpd/milestone/" + str(milestoneNumber) + "?closed=1) for changes.\n'",
"-f", "target_commitish='master'",
"-F", "draft=false",
"-F", "prerelease=false",
], stdout=subprocess.PIPE, check=True)
releaseObj = json.loads(proc.stdout)
# upload file
print()
print("uploading apk to github")
# cannot use 'gh' as uploads have different hostname
uploadUrl = releaseObj['upload_url']
if '{' in uploadUrl:
index = uploadUrl.index('{')
uploadUrl = uploadUrl[0:index]
print("using upload url: " + uploadUrl)
print()
doGithubUpload(githubToken, uploadUrl, apkPath, releaseVersion)
doGithubUpload(githubToken, uploadUrl, apkPathGoogleplay, releaseVersion + "-googleplay")
print()
print("done")
print()
else:
print()
if not isSshUrl:
print("you are not using ssh url, stopping")
if not githubTokenPresent:
print("env var GITHUB_TOKEN not present, stopping")
if not milestoneFound:
print("no matching github milestone found, stopping")
print("you should push and manage release as well as milestone!!!")
print()
def runBuild(bundle = False):
# run build
keyAlias = "prim fptd sign key"
print("running build")
if bundle:
print(" (bundle)")
targetClean = "projects" # use existing target which runs quick and does not change files
targetBuild = ":primitiveFTPd:bundleRelease"
else:
print(" (apk)")
targetClean = "clean"
targetBuild = "assembleRelease"
print()
subprocess.run([
"./gradlew",
targetClean,
targetBuild,
"-Pandroid.injected.signing.store.file=" + keystorePath,
"-Pandroid.injected.signing.key.alias=" + keyAlias,
"-Pandroid.injected.signing.store.password=" + storePassword,
"-Pandroid.injected.signing.key.password=" + keyPassword
], stdout=subprocess.PIPE, check=True)
if bundle:
print("signing bundle")
subprocess.run([
"jarsigner",
"-keystore",
keystorePath,
buildBundlePath,
keyAlias,
"-storepass",
storePassword
], stdout=subprocess.PIPE, check=True)
def commit(msg, path):
print("commiting, \"" + msg + "\"")
print()
subprocess.run([
"git",
"add",
path
], stdout=subprocess.PIPE, check=True)
subprocess.run([
"git",
"commit",
"-m",
msg
], stdout=subprocess.PIPE, check=True)
def gitTag(tag):
print("tagging")
print()
subprocess.run([
"git",
"tag",
"-a",
tag,
"-m",
"'" + tag + "'"
], stdout=subprocess.PIPE, check=True)
def copyToReleasesDir(isGoogleplayVersion):
if len(releasesPath) > 0:
print("copy to releases dir")
targetPath = releasesPath + "/primitiveFTPd-" + \
(releaseVersion if fullBuild else oldSnapshotVersion) + \
("-googleplay" if isGoogleplayVersion else "") + \
".apk"
copyfile(buildApkPath, targetPath)
if isGoogleplayVersion:
copyfile(buildBundlePath, targetPath.replace(".apk", ".aab"))
return targetPath
else:
print("releases dir not set, no copy")
def handleGooglePlayVersion(fullBuild, releaseVersion):
print("handling version for google play")
manifestPath = "primitiveFTPd/AndroidManifest.xml"
permissionExternalStorageEnabled = '<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />'
permissionExternalStorageOutcommented = '<!--<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />-->'
content = open(manifestPath, "r").read()
content = content.replace(permissionExternalStorageEnabled, permissionExternalStorageOutcommented)
file = open(manifestPath, "w")
file.write(content)
file.close()
runBuild()
runBuild(True)
tagNameGooglePlay = "google-play-prim-ftpd-" + releaseVersion
if fullBuild:
# commit permission out commenting
msg = "removing permission to mange external storage for version " + releaseVersion
commit(msg, manifestPath)
# tag
gitTag(tagNameGooglePlay)
# enable permission again
content = content.replace(permissionExternalStorageOutcommented, permissionExternalStorageEnabled)
file = open(manifestPath, "w")
file.write(content)
file.close()
if fullBuild:
# commit
msg = "re-adding permission to mange external storage for next version after " + releaseVersion
commit(msg, manifestPath)
return tagNameGooglePlay
# check env vars
keystorePath = ""
releasesPath = ""
try:
keystorePath = os.environ['PFTPD_KEYSTORE']
releasesPath = os.environ['PFTPD_RELEASES']
except:
dummy=True
if len(keystorePath) < 1:
print("env var PFTPD_KEYSTORE not set!")
sys.exit(-1)
fullBuild = len(sys.argv) > 1 and sys.argv[1] == '--full'
storePassword = getpass("store password: ")
keyPassword = getpass("key password: ")
# figure out version
pathBuildFile = "primitiveFTPd/build.gradle"
oldVersionCode = 0
oldSnapshotVersion = ""
content = ""
with open(pathBuildFile, "r") as file:
content = file.read()
index = content.find("versionCode")
endIndex = content.find("\n", index)
line = content[index:endIndex]
oldVersionCode = line[line.find(" ")+1:len(line)]
index = content.find("versionName")
endIndex = content.find("\n", index)
line = content[index:endIndex]
oldSnapshotVersion = line[line.find("\"")+1:len(line)-1]
newVersionCode = str(int(oldVersionCode)+1)
releaseVersion = oldSnapshotVersion[0:oldSnapshotVersion.find("-")]
major = oldSnapshotVersion[0:releaseVersion.find(".")]
oldMinor = int(releaseVersion[releaseVersion.find(".")+1:len(releaseVersion)])
newMinor = oldMinor + 1
newVersion = major + "." + str(newMinor)
newSnapshotVersion = newVersion + "-SNAPSHOT"
if fullBuild:
print("oldVersionCode: " + oldVersionCode)
print("newVersionCode: " + newVersionCode)
print("oldSnapshotVersion: " + oldSnapshotVersion)
print("releaseVersion: " + releaseVersion)
print("major: " + major)
print("oldMinor: " + str(oldMinor))
print("newMinor: " + str(newMinor))
print("newVersion: " + newVersion)
print("newSnapshotVersion: " + newSnapshotVersion)
print()
# write release version in file
oldVersionCodeLine = "versionCode " + oldVersionCode
newVersionCodeLine = "versionCode " + newVersionCode
oldVersionLine = "versionName \"" + oldSnapshotVersion + "\""
releaseVersionLine = "versionName \"" + releaseVersion + "\""
newSnapshotVersionLine = "versionName \"" + newSnapshotVersion + "\""
content = content.replace(oldVersionLine, releaseVersionLine)
print("writing release version in file")
print()
file = open(pathBuildFile, "w")
file.write(content)
file.close()
runBuild()
if fullBuild:
# commit version change
msg = "set version to " + releaseVersion
commit(msg, pathBuildFile)
# tag
gitTagName = "prim-ftpd-" + releaseVersion
gitTag(gitTagName)
# google play version
apkPath = copyToReleasesDir(False)
gitTagNameGooglePlay = handleGooglePlayVersion(fullBuild, releaseVersion)
apkPathGoogleplay = copyToReleasesDir(True)
# write new snapshot version in file
content = content.replace(oldVersionCodeLine, newVersionCodeLine)
content = content.replace(releaseVersionLine, newSnapshotVersionLine)
print("writing new snapshot version in file")
print()
file = open(pathBuildFile, "w")
file.write(content)
file.close()
# commit
msg = "set version to " + newSnapshotVersion + " and code to " + newVersionCode
commit(msg, pathBuildFile)
else:
apkPath = copyToReleasesDir(False)
gitTagNameGooglePlay = handleGooglePlayVersion(False, 'SNAPSHOT')
apkPathGoogleplay= copyToReleasesDir(True)
if fullBuild:
doRemoteGithubThings(gitTagName, gitTagNameGooglePlay, apkPath, apkPathGoogleplay)