File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -404,11 +404,12 @@ 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
407+ cd example_projects/wasm32_without_js
408+ cargo build --manifest-path rustpython-without-js/Cargo.toml
409+ if wasm-objdump -xj Import rustpython-without-js/ target/wasm32-unknown-unknown/debug/rustpython_without_js .wasm; then
410410 echo "ERROR: wasm32-unknown module expects imports from the host environment" >2
411411 fi
412+ cargo run --release --manifest-path wasm-runtime/Cargo.toml rustpython-without-js/target/wasm32-unknown-unknown/debug/rustpython_without_js.wasm
412413 - name : build notebook demo
413414 if : github.ref == 'refs/heads/release'
414415 run : |
You can’t perform that action at this time.
0 commit comments