-
Notifications
You must be signed in to change notification settings - Fork 16
/
noxfile.py
122 lines (105 loc) · 3.54 KB
/
noxfile.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
from __future__ import annotations
import argparse
import sys
from pathlib import Path
import nox
nox.needs_version = ">=2024.4.15"
nox.options.default_venv_backend = "uv|virtualenv"
nox.options.sessions = ["lint", "build", "tests"]
if sys.platform.startswith("darwin"):
BUILD_ENV = {
"MACOSX_DEPLOYMENT_TARGET": "10.9",
"CMAKE_OSX_ARCHITECTURES": "arm64;x86_64",
"CFLAGS": "-save-temps",
"CXXFLAGS": "-save-temps",
}
else:
BUILD_ENV = {}
built = ""
@nox.session
def build(session: nox.Session) -> str:
"""
Make an SDist and a wheel. Only runs once.
"""
global built # noqa: PLW0603
if not built:
session.log(
"The files produced locally by this job are not intended to be redistributable"
)
session.install("build")
tmpdir = session.create_tmp()
session.run("python", "-m", "build", "--outdir", tmpdir, env=BUILD_ENV)
(wheel_path,) = Path(tmpdir).glob("*.whl")
(sdist_path,) = Path(tmpdir).glob("*.tar.gz")
Path("dist").mkdir(exist_ok=True)
wheel_path.rename(f"dist/{wheel_path.name}")
sdist_path.rename(f"dist/{sdist_path.name}")
built = wheel_path.name
return built
@nox.session
def lint(session: nox.Session) -> str:
"""
Run linters on the codebase.
"""
session.install("pre-commit")
session.run("pre-commit", "run", "-a", *session.posargs)
@nox.session
def tests(session: nox.Session) -> str:
"""
Run the tests.
"""
wheel = build(session)
session.install(f"./dist/{wheel}[test]")
session.run("pytest", *session.posargs)
@nox.session
def bump(session: nox.Session) -> None:
"""
Set to a new version, use -- <version>, otherwise will use the latest version.
"""
parser = argparse.ArgumentParser(description="Process some integers.")
parser.add_argument(
"--upstream-repository",
metavar="UPSTREAM_REPOSITORY",
choices=["Kitware/ninja", "ninja-build/ninja"],
default="Kitware/ninja",
help="Ninja upstream repository",
)
parser.add_argument(
"--commit", action="store_true", help="Make a branch and commit."
)
parser.add_argument(
"version", nargs="?", help="The version to process - leave off for latest."
)
args = parser.parse_args(session.posargs)
if args.version is None:
session.install("lastversion")
version = session.run(
"lastversion", "--format", "tag", args.upstream_repository, log=False, silent=True
).strip()
if version.startswith("v"):
version = version[1:]
else:
version = args.version
deps = nox.project.load_toml("scripts/update_ninja_version.py")["dependencies"]
session.install(*deps)
extra = ["--quiet"] if args.commit else []
session.run("python", "scripts/update_ninja_version.py", "--upstream-repository", args.upstream_repository, version, *extra)
if args.commit:
session.run("git", "switch", "-c", f"update-to-ninja-{version}", external=True)
files = (
"NinjaUrls.cmake",
"README.rst",
"tests/test_ninja.py",
"docs/update_ninja_version.rst",
)
session.run(
"git",
"add",
"-u",
*files,
external=True,
)
session.run("git", "commit", "-m", f"Update to Ninja {version}", external=True)
session.log(
'Complete! Now run: gh pr create --fill --body "Created by running `nox -s bump -- --commit`"'
)