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 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Do-nothing script for making a release
This idea comes from here:
https://blog.danslimmon.com/2019/07/15/do-nothing-scripting-the-key-to-gradual-automation/
Author: Gertjan van den Burg
Date: 2019-07-23
"""
import abc
import os
import re
import subprocess
import sys
import tempfile
import webbrowser
from pathlib import Path
from typing import Dict
from typing import Optional
import colorama
URLS = {
"RTD": "https://readthedocs.org/projects/clevercsv/builds/",
"CI": "https://github.com/alan-turing-institute/CleverCSV/actions",
"dummy": "https://github.com/alan-turing-institute/CleverCSV-pre-commit",
"tags": "https://github.com/alan-turing-institute/CleverCSV/tags",
}
BRANCH_NAME = "master"
CHANGELOG_FILENAME = "CHANGELOG.md"
MAN_DIRECTORY = "./man"
PACKAGE_NICE_NAME = "CleverCSV"
def color_text(
msg: str,
color: Optional[str] = None,
style: Optional[str] = None,
) -> str:
colors = {
"red": colorama.Fore.RED,
"green": colorama.Fore.GREEN,
"cyan": colorama.Fore.CYAN,
"yellow": colorama.Fore.YELLOW,
"magenta": colorama.Fore.MAGENTA,
None: "",
}
styles = {
"bright": colorama.Style.BRIGHT,
"dim": colorama.Style.DIM,
None: "",
}
pre = colors[color] + styles[style]
post = colorama.Style.RESET_ALL
return f"{pre}{msg}{post}"
def color_print(msg, color=None, style=None):
print(color_text(msg, color=color, style=style))
def wait_for_enter():
input(color_text("\nPress Enter to continue", style="dim"))
print()
def get_package_name():
with open("./setup.py", "r") as fp:
nameline = next(
(line.strip() for line in fp if line.startswith("NAME = ")), None
)
return nameline.split("=")[-1].strip().strip('"')
def get_package_version(pkgname):
ctx = {}
with open(f"{pkgname.lower()}/__version__.py", "r") as fp:
exec(fp.read(), ctx)
return ctx["__version__"]
def get_last_version_tag():
output = ""
with subprocess.Popen(
"git tag -l", shell=True, stdout=subprocess.PIPE, text=True, bufsize=1
) as p:
for line in p.stdout:
output += line
tags = output.rstrip().split()
version_tags = [
t for t in tags if re.match(r"v\d+\.\d+\.\d+$", t) is not None
]
versions = [v.lstrip(".") for v in version_tags]
versions.sort()
return versions[-1]
def get_last_release_candidate_tag(version: str):
output = ""
with subprocess.Popen(
"git tag -l", shell=True, stdout=subprocess.PIPE, text=True, bufsize=1
) as p:
for line in p.stdout:
output += line
tags = output.rstrip().split()
version_tags = [
t
for t in tags
if re.match(r"v" + version + r"-rc\.\d+", t) is not None
]
versions = [v.lstrip(".") for v in version_tags]
versions.sort()
if not versions:
return None
return versions[-1]
def read_changelog_section(context: Dict[str, str]) -> str:
next_version = context["next_version"]
section_lines = []
record = False
with open(CHANGELOG_FILENAME, "r") as fileobj:
for line in fileobj:
if line.startswith(f"## Version {next_version}"):
section_lines.append(line)
record = True
continue
if record and line.startswith("## Version"):
record = False
break
elif record:
section_lines.append(line)
return "".join(section_lines)
def build_release_message(context, commit: bool = False) -> str:
# prefix = "bump: " if commit else ""
prefix = ""
message = f"{prefix}{PACKAGE_NICE_NAME} Release {context['next_version']}"
message += "\n"
message += "\n"
message += read_changelog_section(context)
return message
class Step(metaclass=abc.ABCMeta):
def pre(self, context):
pass
def post(self, context):
wait_for_enter()
def run(self, context):
try:
self.pre(context)
self.action(context)
self.post(context)
except KeyboardInterrupt:
color_print("\nInterrupted.", color="red")
raise SystemExit(1)
def instruct(self, msg):
color_print(msg, color="green")
def print_command(self, msg):
color_print("Run:", color="cyan", style="bright")
color_print("\t" + msg, color="cyan", style="bright")
def system(self, cmd: str):
os.system(cmd)
def execute(
self, cmd: str, silent: bool = False, confirm: bool = True
) -> str:
if not silent:
color_print(f"Running: {cmd}", color="magenta", style="bright")
if confirm:
wait_for_enter()
stdout = ""
with subprocess.Popen(
cmd,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE,
text=True,
bufsize=1,
) as p:
for line in p.stdout:
stdout += line
if not silent:
print(line, end="")
if p.returncode:
print("--- begin stdout ---")
print(stdout)
print("--- end stdout ---")
raise subprocess.CalledProcessError(
p.returncode, p.args, stdout, p.stderr
)
return stdout.rstrip()
@abc.abstractmethod
def action(self, context):
"""Action to perform for the step"""
class GitToMaster(Step):
def action(self, context):
self.instruct(f"Ensuring that you're on the {BRANCH_NAME} branch")
branch = self.execute(
"git rev-parse --abbrev-ref HEAD", silent=True, confirm=False
)
if not branch == BRANCH_NAME:
print(f"ERROR: not on {BRANCH_NAME} branch.", file=sys.stderr)
raise SystemExit(1)
def post(self, context):
print("")
class UpdateChangelog(Step):
def action(self, context):
self.instruct(
f"Update change log for version {context['next_version']}"
)
self.print_command("vi CHANGELOG.md")
class UpdateReadme(Step):
def action(self, context):
self.instruct("Update readme if necessary")
self.print_command("vi README.md")
class RunTests(Step):
def action(self, context):
self.instruct("Running the unit tests")
self.execute("make test")
class BumpVersionPackage(Step):
def action(self, context):
self.instruct("Update __version__.py with new version")
self.system(f"vi {context['pkgname']}/__version__.py")
def post(self, context):
wait_for_enter()
context["next_version"] = get_package_version(context["pkgname"])
class MakeClean(Step):
def action(self, context):
self.execute("make clean")
class MakeDocs(Step):
def action(self, context):
self.execute("make docs")
class MakeMan(Step):
def action(self, context):
self.execute("make man")
class InstallFromTestPyPI(Step):
def action(self, context):
tmpvenv = tempfile.mkdtemp(prefix="ccsv_venv_")
parent = str(Path(tmpvenv).parent)
self.execute(
f"cd {parent} && python -m venv {tmpvenv} && source {tmpvenv}"
"/bin/activate && pip install --no-cache-dir --index-url "
"https://test.pypi.org/simple/ --extra-index-url "
f"https://pypi.org/simple {context['pkgname']}[full]=="
f"{context['next_version']}"
)
context["tmpvenv"] = tmpvenv
class TestPackage(Step):
def action(self, context):
self.instruct(
f"Ensuring that the package has version {context['next_version']}"
)
version = self.execute(
f"source {context['tmpvenv']}/bin/activate && clevercsv -V",
silent=True,
confirm=False,
)
if not version == context["next_version"]:
print(
"ERROR: version installed from TestPyPI doesn't match "
"expected version."
)
def post(self, context):
print("")
class RemoveVenv(Step):
def action(self, context):
self.execute(
f"rm -rf {context['tmpvenv']}", confirm=False, silent=True
)
def post(self, context):
print("")
class GitTagVersion(Step):
def action(self, context):
tag_message = build_release_message(context, commit=False)
with open("./tag_message.tmp", "w") as fileobj:
fileobj.write(tag_message)
self.instruct("Going to tag with the following message:")
print("--- BEGIN TAG MESSAGE ---")
print(tag_message)
print("--- END TAG MESSAGE ---")
self.execute(
f"git tag -s -F ./tag_message.tmp v{context['next_version']}"
)
os.unlink("./tag_message.tmp")
class GitTagPreRelease(Step):
def action(self, context):
last_rc_tag = get_last_release_candidate_tag(context["next_version"])
rc_count = (
1 if last_rc_tag is None else int(last_rc_tag.split(".")[-1]) + 1
)
context["rc_count"] = rc_count
self.instruct("Tagging version as a pre-release")
self.execute(
f'git tag -s -m "{PACKAGE_NICE_NAME} Release v'
f"{context['next_version']} (release candidate {rc_count})\" v"
f"{context['next_version']}-rc.{rc_count}"
)
class GitAdd(Step):
def action(self, context):
self.instruct("Commit any final changes for release to git")
self.print_command("git gui")
class GitAddVersionAndMan(Step):
def action(self, context):
self.instruct("Add version and man pages to git and commit")
self.execute(
f"git add {context['pkgname']}/__version__.py", confirm=False
)
self.execute(f"git add {MAN_DIRECTORY}", confirm=False)
# TODO: Fail gracefully if `git diff --cached --exit-code` is 0
self.execute("git commit -m 'bump: update version and manpages'")
class GitAddRelease(Step):
def action(self, context):
self.instruct("Add Changelog & Readme to git")
self.execute("git add CHANGELOG.md", confirm=False)
self.execute("git add README.md", confirm=False)
self.execute("git add docs/CHANGELOG.rst", confirm=False)
self.execute("git add man/", confirm=False)
self.instruct("Going to commit with the following message:")
commit_message = build_release_message(context, commit=True)
print("--- BEGIN COMMIT MESSAGE ---")
print(commit_message)
print("--- END COMMIT MESSAGE ---")
with open("./commit_message.tmp", "w") as fileobj:
fileobj.write(commit_message)
self.execute("git commit --file ./commit_message.tmp")
os.unlink("./commit_message.tmp")
class PushToGitHub(Step):
def action(self, context):
self.execute(f"git push -u --tags origin {BRANCH_NAME}")
class WaitForCI(Step):
def action(self, context):
webbrowser.open(URLS["CI"])
self.instruct("Wait for CI to complete and verify that its successful")
class WaitForRTD(Step):
def action(self, context):
webbrowser.open(URLS["RTD"])
self.instruct(
"Wait for ReadTheDocs to complete and verify that its successful"
)
class GitHubRelease(Step):
def action(self, context):
webbrowser.open(URLS["tags"])
self.instruct("Create release from tag and embed release notes")
class UpdatePreCommitDummy(Step):
def action(self, context):
self.instruct(
f"Update the pre-commit dummy package ({URLS['dummy']}) "
"by running ``make release`` there"
)
def main(target=None):
colorama.init()
procedure = [
("gittomaster", GitToMaster()),
("clean1", MakeClean()),
# ("docs1", MakeDocs()),
# ("man1", MakeMan()),
("runtests", RunTests()),
# trigger CI to run tests on all platforms
("push1", PushToGitHub()),
("ci1", WaitForCI()),
("waitrtd", WaitForRTD()),
("bumpversion", BumpVersionPackage()),
("gitadd2", GitAdd()),
("gittagpre", GitTagPreRelease()),
# trigger CI to run tests using cibuildwheel
("push2", PushToGitHub()),
("ci2", WaitForCI()),
("changelog", UpdateChangelog()),
("readme", UpdateReadme()),
("clean2", MakeClean()),
("docs2", MakeDocs()),
("man2", MakeMan()),
("install", InstallFromTestPyPI()),
("testpkg", TestPackage()),
("remove_venv", RemoveVenv()),
("addrelease", GitAddRelease()),
("tagfinal", GitTagVersion()),
# triggers Travis to build with cibw and push to PyPI
("push3", PushToGitHub()),
("ci3", WaitForCI()),
("gh_release", GitHubRelease()),
("pre-commit", UpdatePreCommitDummy()),
]
context = {}
context["pkgname"] = get_package_name()
context["prev_version_tag"] = get_last_version_tag()
context["next_version"] = get_package_version(context["pkgname"])
skip = True if target else False
for name, step in procedure:
if not name == target and skip:
continue
skip = False
step.run(context)
color_print("\nDone!", color="yellow", style="bright")
if __name__ == "__main__":
target = sys.argv[1] if len(sys.argv) > 1 else None
main(target=target)
|