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
3 changes: 2 additions & 1 deletion master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def setup(self, parallel, branch, test_with_PTY=False, **kwargs):
class Wasm32WasiCrossBuild(UnixCrossBuild):
"""wasm32-wasi builder

* WASI SDK >= 16 must be installed to default path /opt/wasi-sdk
* WASI SDK 21 must be installed at /opt/wasi-sdk-21.0
* wasmtime must be installed and on PATH
"""

Expand Down Expand Up @@ -924,6 +924,7 @@ def setup(self, parallel, branch, test_with_PTY=False, **kwargs):
haltOnFailure=True,
)
)
self.compile_environ["WASI_SDK_PATH"] = "/opt/wasi-sdk-21.0"
super().setup(parallel, branch, test_with_PTY=test_with_PTY, **kwargs)


Expand Down