python-devkit 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
@@ -0,0 +1,52 @@
1
+ from __future__ import annotations
2
+
3
+ import time
4
+ from collections.abc import Generator
5
+ from contextlib import contextmanager
6
+
7
+ from pydantic_settings import BaseSettings
8
+
9
+
10
+ class Settings(BaseSettings):
11
+ github_step_summary: str | None = None
12
+
13
+
14
+ settings = Settings.model_validate({})
15
+ _summary_initialized = False
16
+
17
+
18
+ def _format_duration(seconds: float) -> str:
19
+ if seconds < 60:
20
+ return f"{seconds:.1f}s"
21
+ minutes = int(seconds // 60)
22
+ remaining = seconds % 60
23
+ return f"{minutes}m {remaining:.0f}s"
24
+
25
+
26
+ def _write_summary(label: str, duration: float, *, failed: bool) -> None:
27
+ global _summary_initialized
28
+ summary_path = settings.github_step_summary
29
+ if not summary_path:
30
+ return
31
+ with open(summary_path, "a") as file:
32
+ if not _summary_initialized:
33
+ file.write("| Step | Duration |\n|---|---|\n")
34
+ _summary_initialized = True
35
+ status = " :x:" if failed else ""
36
+ file.write(f"| {label}{status} | {_format_duration(duration)} |\n")
37
+
38
+
39
+ @contextmanager
40
+ def ci_step(label: str) -> Generator[None]:
41
+ print(f"::group::{label}", flush=True)
42
+ start = time.monotonic()
43
+ failed = False
44
+ try:
45
+ yield
46
+ except BaseException:
47
+ failed = True
48
+ raise
49
+ finally:
50
+ duration = time.monotonic() - start
51
+ print("::endgroup::", flush=True)
52
+ _write_summary(label, duration, failed=failed)
python_devkit/py.typed ADDED
File without changes
python_devkit/setup.py ADDED
@@ -0,0 +1,127 @@
1
+ from __future__ import annotations
2
+
3
+ import os
4
+ import platform
5
+ import re
6
+ import shlex
7
+ import shutil
8
+ from pathlib import Path
9
+
10
+ from bashrun import bash, bash_no_raise, bash_output
11
+ from pydantic import Field
12
+ from pydantic_settings import BaseSettings
13
+
14
+
15
+ class Settings(BaseSettings):
16
+ github_path: str | None = None
17
+ system_drive: str = Field("C:", validation_alias="SystemDrive")
18
+ agent_tools_directory: str | None = Field(None, validation_alias="AGENT_TOOLSDIRECTORY")
19
+
20
+
21
+ settings = Settings.model_validate({})
22
+
23
+ CONTAINER_PATHS = ["/to_clean/android", "/to_clean/dotnet", "/to_clean/ghcup", "/to_clean/swift"]
24
+
25
+ BARE_LINUX_PATHS = ["/usr/local/lib/android", "/usr/share/dotnet", "/usr/local/.ghcup", "/usr/share/swift", "/opt/ghc"]
26
+
27
+ LARGE_PACKAGE_PATTERNS = [
28
+ "^aspnetcore-.*",
29
+ "^dotnet-.*",
30
+ "^llvm-.*",
31
+ "php.*",
32
+ "^mongodb-.*",
33
+ "^mysql-.*",
34
+ "azure-cli",
35
+ "google-chrome-stable",
36
+ "firefox",
37
+ "powershell",
38
+ "mono-devel",
39
+ "libgl1-mesa-dri",
40
+ "google-cloud-sdk",
41
+ "google-cloud-cli",
42
+ ]
43
+
44
+
45
+ def _remove_paths(paths: list[str], sudo: bool = False) -> None:
46
+ existing = [path for path in paths if Path(path).exists()]
47
+ if not existing:
48
+ return
49
+ if sudo:
50
+ bash_no_raise(f"sudo rm -rf {shlex.join(existing)}")
51
+ elif platform.system() == "Windows":
52
+ for path in existing:
53
+ shutil.rmtree(path, ignore_errors=True)
54
+ else:
55
+ bash_no_raise(f"rm -rf {shlex.join(existing)}")
56
+
57
+
58
+ # actions/checkout sets safe.directory in a temporary HOME that's cleaned up
59
+ # after the step finishes (actions/checkout#766). Container jobs that run
60
+ # git later need it re-set in the real HOME.
61
+ def configure_git(workspace: str) -> None:
62
+ bash(f"git config --global --add safe.directory {shlex.quote(workspace)}")
63
+
64
+
65
+ def free_disk_space(*, large_packages: bool = False, docker_images: bool = False, swap_storage: bool = False) -> None:
66
+ system = platform.system()
67
+ in_container = Path("/to_clean").is_dir()
68
+
69
+ if system == "Windows":
70
+ paths = [os.path.join(settings.system_drive, "Program Files", "dotnet")]
71
+ if settings.agent_tools_directory:
72
+ paths.append(settings.agent_tools_directory)
73
+ print(f"Removing: {', '.join(paths)}")
74
+ _remove_paths(paths)
75
+ elif in_container:
76
+ print("Removing pre-installed toolchains (container)")
77
+ _remove_paths(CONTAINER_PATHS)
78
+ else:
79
+ print("Removing pre-installed toolchains")
80
+ _remove_paths(BARE_LINUX_PATHS, sudo=True)
81
+
82
+ if large_packages:
83
+ print("Removing large apt packages")
84
+ bash_no_raise(f"sudo apt-get remove -y --fix-missing {shlex.join(LARGE_PACKAGE_PATTERNS)}")
85
+ bash_no_raise("sudo apt-get autoremove -y")
86
+ bash_no_raise("sudo apt-get clean")
87
+
88
+ if docker_images:
89
+ print("Pruning Docker images")
90
+ bash_no_raise("sudo docker image prune --all --force")
91
+
92
+ if swap_storage:
93
+ print("Removing swap")
94
+ bash_no_raise("sudo swapoff -a")
95
+ bash_no_raise("sudo rm -f /mnt/swapfile")
96
+
97
+ bash("df -h")
98
+
99
+
100
+ def install_dotnet(channel: str) -> None:
101
+ print(f"Installing .NET SDK {channel}")
102
+ script = Path(__file__).parent / "third-party" / "dotnet-install.sh"
103
+ bash(f"bash {script} --channel {channel}")
104
+ dotnet_path = str(Path.home() / ".dotnet")
105
+ os.environ["PATH"] = f"{dotnet_path}{os.pathsep}{os.environ['PATH']}"
106
+ if settings.github_path:
107
+ with open(settings.github_path, "a") as file:
108
+ file.write(f"{dotnet_path}\n")
109
+
110
+
111
+ def install_node(version: str, registry_url: str | None = None) -> None:
112
+ system = platform.system()
113
+ sudo = system == "Linux" and os.geteuid() != 0
114
+
115
+ print(f"Installing Node.js {version}")
116
+ shasums = bash_output(f"curl -fsSL https://nodejs.org/dist/latest-v{version}.x/SHASUMS256.txt")
117
+ match = re.search(r"(node-v[\d.]+-linux-x64\.tar\.xz)", shasums)
118
+ if not match:
119
+ raise SystemExit(f"Could not find Node.js v{version} linux-x64 binary")
120
+ filename = match.group(1)
121
+ prefix = "sudo " if sudo else ""
122
+ bash(f"curl -fsSLO https://nodejs.org/dist/latest-v{version}.x/{filename}")
123
+ bash(f"{prefix}rm -rf /usr/local/lib/node_modules/npm")
124
+ bash(f"{prefix}tar -xJf {filename} -C /usr/local --strip-components=1")
125
+ Path(filename).unlink()
126
+ if registry_url:
127
+ (Path.home() / ".npmrc").write_text(f"registry={registry_url}\n")
@@ -0,0 +1,51 @@
1
+ from __future__ import annotations
2
+
3
+ import os
4
+ import platform
5
+ import shlex
6
+ import shutil
7
+ from pathlib import Path
8
+
9
+ from bashrun import bash
10
+ from pydantic_settings import BaseSettings
11
+
12
+
13
+ class Settings(BaseSettings):
14
+ github_token: str
15
+ github_actor: str = ""
16
+ github_path: str | None = None
17
+ runner_temp: str = "."
18
+
19
+
20
+ def install_oras(version: str = "1.2.2") -> None:
21
+ settings = Settings.model_validate({})
22
+ system = platform.system()
23
+ sudo = system == "Linux" and os.geteuid() != 0
24
+ prefix = "sudo " if sudo else ""
25
+
26
+ if system == "Linux":
27
+ bash(f"{prefix}apt-get update -qq")
28
+ bash(f"{prefix}apt-get install -y -qq zstd")
29
+ elif system == "Windows":
30
+ bash("choco install zstandard -y --no-progress")
31
+
32
+ if system == "Linux":
33
+ archive = f"oras_{version}_linux_amd64.tar.gz"
34
+ bash(f"curl -fsSLO https://github.com/oras-project/oras/releases/download/v{version}/{archive}")
35
+ bash(f"{prefix}tar -xzf {archive} -C /usr/local/bin/ oras")
36
+ Path(archive).unlink()
37
+ elif system == "Windows":
38
+ archive = f"oras_{version}_windows_amd64.zip"
39
+ oras_directory = Path(settings.runner_temp) / "oras"
40
+ bash(f"curl -fsSLO https://github.com/oras-project/oras/releases/download/v{version}/{archive}")
41
+ shutil.unpack_archive(archive, oras_directory)
42
+ Path(archive).unlink()
43
+ os.environ["PATH"] = f"{oras_directory}{os.pathsep}{os.environ['PATH']}"
44
+ if settings.github_path:
45
+ with open(settings.github_path, "a") as file:
46
+ file.write(f"{oras_directory}\n")
47
+
48
+ bash(
49
+ f"oras login ghcr.io --username {shlex.quote(settings.github_actor)} --password-stdin",
50
+ stdin_text=settings.github_token,
51
+ )
@@ -0,0 +1,9 @@
1
+ # Third-party vendored files
2
+
3
+ ## dotnet-install.sh
4
+
5
+ - **Source**: https://dot.net/v1/dotnet-install.sh
6
+ - **Upstream repo**: https://github.com/dotnet/install-scripts
7
+ - **License**: MIT (see header in script)
8
+ - **Vendored**: 2026-03-16
9
+ - **Why**: The `actions/setup-dotnet` GitHub Action bundles this script locally to avoid downloading it at runtime. We vendor it for the same reason — downloading it via curl inside CI containers is unreliable (timeouts).