CI: Hobble WASM job

The WASM job is not working. `wasm-pack build` works fine but `wasm-pack
test` doesn't compile.

Comment out the line that runs `wasm-pack test`.
This commit is contained in:
Tobin C. Harding 2024-10-23 06:59:51 +11:00
parent b4f52ac87a
commit 5ec17a2ee8
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 3 additions and 2 deletions

View File

@ -8,5 +8,6 @@ clang --version &&
CARGO_TARGET_DIR=wasm cargo install --force wasm-pack && CARGO_TARGET_DIR=wasm cargo install --force wasm-pack &&
printf '\n[target.wasm32-unknown-unknown.dev-dependencies]\nwasm-bindgen-test = "0.3"\n' >> Cargo.toml && printf '\n[target.wasm32-unknown-unknown.dev-dependencies]\nwasm-bindgen-test = "0.3"\n' >> Cargo.toml &&
printf '\n[lib]\ncrate-type = ["cdylib", "rlib"]\n' >> Cargo.toml && printf '\n[lib]\ncrate-type = ["cdylib", "rlib"]\n' >> Cargo.toml &&
CC=clang-9 wasm-pack build && CC=clang-9 wasm-pack build;
CC=clang-9 wasm-pack test --node; # wasm-pack test isn't currently working.
# CC=clang-9 wasm-pack test --node;