From 5ec17a2ee8c963d182777a9661b1bab786956bd4 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 23 Oct 2024 06:59:51 +1100 Subject: [PATCH] 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`. --- hashes/contrib/wasm.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hashes/contrib/wasm.sh b/hashes/contrib/wasm.sh index 6139e3078..c7b5c8b7c 100755 --- a/hashes/contrib/wasm.sh +++ b/hashes/contrib/wasm.sh @@ -8,5 +8,6 @@ clang --version && 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[lib]\ncrate-type = ["cdylib", "rlib"]\n' >> Cargo.toml && - CC=clang-9 wasm-pack build && - CC=clang-9 wasm-pack test --node; + CC=clang-9 wasm-pack build; +# wasm-pack test isn't currently working. +# CC=clang-9 wasm-pack test --node;