File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -404,11 +404,13 @@ jobs:
404404 with : { wabt-version: "1.0.36" }
405405 - name : check wasm32-unknown without js
406406 run : |
407- cd wasm/wasm-unknown-test
408- cargo build --release --verbose
409- if wasm-objdump -xj Import target/wasm32-unknown-unknown/release/wasm_unknown_test.wasm; then
410- echo "ERROR: wasm32-unknown module expects imports from the host environment" >2
407+ cd example_projects/wasm32_without_js/rustpython-without-js
408+ cargo build
409+ cd ..
410+ if wasm-objdump -xj Import rustpython-without-js/target/wasm32-unknown-unknown/debug/rustpython_without_js.wasm; then
411+ echo "ERROR: wasm32-unknown module expects imports from the host environment" >&2
411412 fi
413+ cargo run --release --manifest-path wasm-runtime/Cargo.toml rustpython-without-js/target/wasm32-unknown-unknown/debug/rustpython_without_js.wasm
412414 - name : build notebook demo
413415 if : github.ref == 'refs/heads/release'
414416 run : |
You can’t perform that action at this time.
0 commit comments