-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocsubfile.py
88 lines (75 loc) · 3.04 KB
/
docsubfile.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
from itertools import chain
import json
from pathlib import Path
from subprocess import DEVNULL, check_output
import sys
from urllib.request import urlopen
import click # type: ignore
from rich.console import Console # type: ignore
from rich.progress import track # type: ignore
IMG = 'makukha/multipython'
INFO_DIR = Path('tests/share/info')
LATEST = '✨'
@click.group()
def x(): ...
@x.command()
def image_digests():
# get release tags
bake = check_output(['docker', 'buildx', 'bake', '--print'], stderr=DEVNULL)
data = json.loads(bake)
release = data['target']['base']['args']['RELEASE']
tags = chain.from_iterable(
[t.split(':')[-1] for t in target['tags'] if t.endswith(f'-{release}')]
for target in data['target'].values()
)
# get digests
NS, REPO = IMG.split('/')
stdout = sys.stdout
for tag in track(tuple(tags), console=Console(file=sys.stderr)):
with urlopen( # noqa: S310 = Audit URL open for permitted schemes
f'https://hub.docker.com/v2/namespaces/{NS}/repositories/{REPO}/tags/{tag}'
) as f:
info = json.load(f)
stdout.write(f'| `{tag}` | `{info["digest"]}` |\n')
@x.command
@click.argument('group', type=click.Choice(['base', 'derived', 'single']))
def package_versions(group: str):
def get_info(target: str) -> dict:
return json.loads((INFO_DIR / f'{target}.json').read_text())
bake = check_output(['docker', 'buildx', 'bake', '--print'], stderr=DEVNULL)
data = json.loads(bake)
out = sys.stdout
# setup
pkgs: tuple[str, ...]
if group == 'base':
targets = ['base']
pkgs = ('pyenv', 'uv')
elif group == 'derived':
pkgs = ('pip', 'setuptools', 'tox', 'virtualenv', 'wheel')
targets = [t for t in data['target'] if t != 'base' and not t.startswith('py')]
elif group == 'single':
pkgs = ('pip', 'setuptools', 'tox', 'virtualenv', 'wheel')
targets = [t for t in data['target'] if t.startswith('py')]
tags = [py['tag'] for py in get_info('unsafe')['python']]
targets.sort(key=lambda x: tags.index(x))
else:
raise ValueError(f'unknown group: {group}')
# header
out.write(f'| Image tag | {" | ".join(pkgs)} |\n')
out.write(f'|---|{"---|" * len(pkgs)}\n')
# body
if group == 'base':
info = get_info(targets[0])
cells = ' | '.join(f'{info[p]["version"]} {LATEST}' for p in pkgs)
out.write(f'| `{targets[0]}` | {cells} |\n')
out.write(f'| *other images* | {cells} |\n')
elif group == 'derived' or group == 'single':
latest = get_info('latest')['system'][('packages')]
mark = lambda p, v: f' {LATEST}' if latest[p] == v else '' # noqa: E731 = lambda
for target in targets:
info = get_info(target)
versions = {p: info['system']['packages'][p] for p in pkgs}
cells = ' | '.join(f'{v}{mark(p, v)}' for p, v in versions.items())
out.write(f'| `{target}` | {cells} |\n')
else:
raise ValueError(f'unknown group: {group}')