forked from AcademySoftwareFoundation/rez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-rez.py
280 lines (213 loc) · 7.65 KB
/
release-rez.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
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the Rez Project
"""
Release a new version of rez.
Read RELEASE.md before using this utility.
"""
import argparse
import os
from datetime import date
from shlex import quote
import subprocess
import sys
try:
import requests
except ImportError:
sys.stderr.write("Requires python requests module.\n")
sys.exit(1)
source_path = os.path.dirname(os.path.realpath(__file__))
src_path = os.path.join(source_path, "src")
sys.path.insert(0, src_path)
from rez.utils._version import _rez_version
def get_github_repo_owner():
out = subprocess.check_output(["git", "remote", "-v"], text=True)
# eg [email protected]:jbloggs/rez.git, https://github.com/jbloggs/rez.git
remote_url = out.split()[1]
parts = remote_url.replace('/', ' ').replace(':', ' ').split()
return parts[-2]
_repo_owner = get_github_repo_owner()
github_baseurl = "github.com/repos/%s/rez" % _repo_owner
github_baseurl2 = "github.com/%s/rez" % _repo_owner
verbose = False
# https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line
# requires 'public_repo' access
#
github_token = os.environ["GITHUB_RELEASE_REZ_TOKEN"]
def run_command(*nargs):
if verbose:
print("RUNNING: %s" % ' '.join(map(quote, nargs)))
proc = subprocess.Popen(nargs, stdout=subprocess.PIPE, text=True)
out, _ = proc.communicate()
if proc.returncode:
sys.stderr.write("Aborting, failed with exit code %d.\n" % proc.returncode)
sys.exit(proc.returncode)
return out.strip()
def github_request(method, endpoint, headers=None, **kwargs):
url = "https://api.%s/%s" % (github_baseurl, endpoint)
headers = (headers or {}).copy()
headers["Authorization"] = "token " + github_token
return requests.request(method, url, headers=headers, **kwargs)
def parse_topmost_changelog():
result = {}
body_lines = []
with open("CHANGELOG.md") as f:
for line in f.readlines():
parts = line.split()
# eg: ## 2.38.0 (2019-07-20)
if parts and parts[0] == "##":
if result.get("version"):
result["body"] = ''.join(body_lines).strip()
return result
result["version"] = parts[1]
result["name"] = ' '.join(parts[1:])
elif result.get("version"):
# GitHub seems to treat separate lines in the md as line breaks,
# rather than keeping them in the same paragraph as a typical
# md renderer would. So patch that up here.
#
br_chars = ('*', '-', '#', '[')
if body_lines and \
body_lines[-1].strip() and \
body_lines[-1][0] not in br_chars and \
line.strip() and \
line[0] not in br_chars:
# append to previous line
body_lines[-1] = body_lines[-1].rstrip() + ' ' + line
else:
body_lines.append(line)
# should never get here
assert False
def check_on_main():
branch = run_command("git", "branch", "--contains").split()[-1]
if branch != "main":
sys.stderr.write("Must be run from the 'main' branch.\n")
sys.exit(1)
def push_codebase():
run_command("git", "push")
def create_and_push_tag():
run_command("git", "tag", _rez_version)
run_command("git", "push", "origin", _rez_version)
def create_github_release_notes():
# check if latest release notes already match current version
response = github_request("get", "releases/latest")
response.raise_for_status()
latest_release_tag = response.json()["tag_name"]
if latest_release_tag == _rez_version:
sys.stderr.write("Release for %s already exists.\n" % _rez_version)
sys.exit(1)
# parse latest release out of changelog
changelog = parse_topmost_changelog()
tag_name = changelog["version"]
if tag_name != _rez_version:
sys.stderr.write(
"Latest entry in changelog (%s) doesn't match current version (%s).\n"
% (tag_name, _rez_version)
)
sys.exit(1)
data = dict(
tag_name=_rez_version,
name=changelog["name"],
body=changelog["body"]
)
# create the release on github
response = github_request(
"post",
"releases",
json=data,
headers={"Content-Type": "application/json"}
)
response.raise_for_status()
url = "https://%s/releases/tag/%s" % (github_baseurl, _rez_version)
print("Created release notes: " + url)
def generate_changelog_entry(issue_nums):
# parse previous release out of changelog
changelog = parse_topmost_changelog()
previous_version = changelog["version"]
if previous_version == _rez_version:
sys.stderr.write(
"Latest entry in changelog (%s) matches current version (%s).\n"
% (previous_version, _rez_version)
)
sys.exit(1)
# get issues and PRs from cli
pr_lines = []
issue_lines = []
for issue_num in sorted(issue_nums):
# note that 'issues' endpoint also returns PRs
response = github_request(
"get",
"issues/%d" % issue_num,
headers={"Content-Type": "application/json"}
)
if response.status_code == 404:
sys.stderr.write("Issue/PR does not exist: %d\n" % issue_num)
sys.exit(1)
response.raise_for_status()
data = response.json()
url = data["html_url"]
user = data["user"]
title = data["title"]
title = title.lstrip('-')
if "pull_request" in data:
pr_lines.append(
"- %s [\\#%d](%s) ([%s](%s))"
% (title, issue_num, url, user["login"], user["html_url"])
)
else:
# issue
issue_lines.append(
"- %s [\\#%d](%s)"
% (title, issue_num, url)
)
# print title section
today = date.today()
print(
"## v%s (%d-%02d-%02d)" %
(_rez_version, today.year, today.month, today.day)
)
print(
"[Source](https://%s/tree/%s) | [Diff](https://%s/compare/%s...%s)" %
(github_baseurl2, _rez_version, github_baseurl2, previous_version, _rez_version)
)
print("")
# print PRs and issues
if pr_lines:
print(
"**Merged pull requests:**\n\n" +
"\n".join(pr_lines)
)
if issue_lines:
if pr_lines:
print("")
print(
"**Closed issues:**\n\n" +
"\n".join(issue_lines)
)
print("")
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument(
"-s", "--step", choices=("push", "tag", "release_notes"),
help="Just run one step of the release process")
parser.add_argument(
"-c", "--changelog", nargs='*', metavar="ISSUE", type=int,
help="Generate changelog entry to be added to CHANGELOG.md")
parser.add_argument(
"-v", "--verbose", action="store_true",
help="Verbose mode")
opts = parser.parse_args()
verbose = opts.verbose
if opts.changelog is not None:
issue_nums = opts.changelog
generate_changelog_entry(issue_nums)
sys.exit(0)
print("Releasing rez-%s..." % _rez_version)
def doit(step):
return (opts.step is None) or (step == opts.step)
check_on_main()
if doit("push"):
push_codebase()
if doit("tag"):
create_and_push_tag()
if doit("release_notes"):
create_github_release_notes()