blob: a3c8d037e7b5dea0ae33a2dc5e74d618dc157648 (
plain)
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
|
"""
scripts/release/repo_release.py
Run after every `pyinstaller labdaq.spec` build, from anywhere (paths are
made absolute below before the working directory changes). Packages the
freshly built dist/LabDAQ bundle as a new signed tufup target.
Prerequisites:
- repo_init.py has been run once already (./repository and ./keystore exist)
- core/version.py has been bumped to the new version
- dist/LabDAQ/ exists (pyinstaller labdaq.spec has just been run)
After this completes, see README.md in this directory for how to publish
the updated ./repository/metadata and ./repository/targets files to the
"updates" GitHub Release.
"""
import os
import sys
from pathlib import Path
_THIS_DIR = Path(__file__).resolve().parent
_REPO_ROOT = _THIS_DIR.parent.parent
_DIST_DIR = _REPO_ROOT / "dist" / "LabDAQ"
# Import core.version before changing cwd — needs the repo root on sys.path,
# which won't be true anymore once we chdir into scripts/release below.
sys.path.insert(0, str(_REPO_ROOT))
from core.version import __version__ as APP_VERSION
from tufup.repo import Repository
# tufup's config file / relative repo_dir / keys_dir all resolve against cwd
# (same reasoning as repo_init.py) — pin it here too, for the same reason.
os.chdir(_THIS_DIR)
def main():
if not _DIST_DIR.is_dir():
raise SystemExit(
f"{_DIST_DIR} not found — run `pyinstaller labdaq.spec` from the "
f"repo root first."
)
repo = Repository.from_config()
changelog = input(f"One-line changelog for v{APP_VERSION} (optional): ").strip()
custom_metadata = {"changelog": changelog} if changelog else None
repo.add_bundle(
new_bundle_dir=_DIST_DIR,
new_version=APP_VERSION,
skip_patch=True, # no binary delta patching for now — full archive only
custom_metadata=custom_metadata,
)
repo.publish_changes(private_key_dirs=[Path("keystore")])
print(f"Signed and published v{APP_VERSION} to ./repository")
print("Next: upload ./repository/metadata/* and ./repository/targets/* "
"to the 'updates' GitHub Release — see README.md in this directory.")
if __name__ == "__main__":
main()
|