Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,6 +958,12 @@ def setup(self, branch, worker, test_with_PTY=False, **kwargs):
command=["python3", wasi_py, "make-build-python"],
)
)
self.addStep(
PythonInfo(
name="Display build info of the build Python",
command=["python3", wasi_py, "pythoninfo-build"],
)
)

# Host/WASI Python
self.addStep(
Expand All @@ -974,10 +980,12 @@ def setup(self, branch, worker, test_with_PTY=False, **kwargs):
)
)

self.addStep(PythonInfo(
command=["make", "pythoninfo"],
workdir=host_path,
))
self.addStep(
PythonInfo(
name="Display build info of the host/WASI Python",
command=["python3", wasi_py, "pythoninfo-host"],
)
)

# Copied from UnixBuild.
testopts = [*self.testFlags, *get_j_opts(worker, 2)]
Expand Down Expand Up @@ -1012,7 +1020,7 @@ def setup(self, branch, worker, test_with_PTY=False, **kwargs):


# Preventing this from running on versions older than 3.13 is managed in
# master.cfg.
# workers.py.
class Wasm32WasiPreview1DebugBuild(_Wasm32WasiPreview1Build):
append_suffix = ".debug"
pydebug = True
Expand Down