Skip to content

Commit 555c55a

Browse files
committed
Make CI to run rustpython-without-js test
1 parent 45a4b39 commit 555c55a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)