Skip to content

Commit 132e343

Browse files
committed
Brand everything as being for WASI preview1
1 parent 11cd06b commit 132e343

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

master/custom/builders.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
WindowsARM64Build,
4444
WindowsARM64ReleaseBuild,
4545
Wasm32WasiCrossBuild,
46-
Wasm32WasiDebugBuild,
46+
Wasm32WasiPreview1DebugBuild,
4747
IOSARM64SimulatorBuild,
4848
AndroidBuild,
4949
ValgrindBuild,
@@ -133,7 +133,7 @@
133133

134134
# WASI
135135
("wasm32-wasi Non-Debug", "bcannon-wasi", Wasm32WasiCrossBuild),
136-
("wasm32-wasi", "bcannon-wasi", Wasm32WasiDebugBuild),
136+
("wasm32-wasi", "bcannon-wasi", Wasm32WasiPreview1DebugBuild),
137137
]
138138

139139

master/custom/factories.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ def setup(self, parallel, branch, test_with_PTY=False, **kwargs):
872872
super().setup(parallel, branch, test_with_PTY=test_with_PTY, **kwargs)
873873

874874

875-
class _Wasm32WasiBuild(UnixBuild):
875+
class _Wasm32WasiPreview1Build(UnixBuild):
876876
"""Build Python for wasm32-wasi using Tools/wasm/wasi.py."""
877877
buildersuffix = ".wasi"
878878
factory_tags = ["wasm", "wasi"]
@@ -969,7 +969,7 @@ def setup(self, parallel, branch, test_with_PTY=False, **kwargs):
969969

970970
# Preventing this from running on versions older than 3.13 is managed in
971971
# master.cfg.
972-
class Wasm32WasiDebugBuild(_Wasm32WasiBuild):
972+
class Wasm32WasiPreview1DebugBuild(_Wasm32WasiPreview1Build):
973973
append_suffix = ".debug"
974974
pydebug = True
975975
testFlags = ["-u-cpu"]

0 commit comments

Comments
 (0)