Skip to content

Commit

Permalink
Merge remote-tracking branch 'namada/tomas/clean-wasm-before-build' (#…
Browse files Browse the repository at this point in the history
…799) into main

* namada/tomas/clean-wasm-before-build:
  make: clean any existing WASM files before WASM build
  • Loading branch information
juped committed Nov 30, 2022
2 parents dceaba5 + 875c54a commit 4603b80
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,14 @@ debug-wasm-scripts-docker: build-wasm-image-docker

# Build the validity predicate and transactions wasm
build-wasm-scripts:
rm wasm/*.wasm || true
make -C $(wasms)
make opt-wasm
make checksum-wasm

# Debug build the validity predicate, transactions, matchmaker and matchmaker filter wasm
# Debug build the validity predicate and transactions wasm
debug-wasm-scripts:
rm wasm/*.wasm || true
make -C $(wasms) debug
make opt-wasm
make checksum-wasm
Expand Down

0 comments on commit 4603b80

Please sign in to comment.