Drop wasm toolchain dependency for tests

This commit is contained in:
Pekka Enberg
2024-06-19 16:24:04 +03:00
parent 94c827d5ae
commit 805458e37f

View File

@@ -1,8 +1,14 @@
all:
cargo build
cargo build --package limbo-wasm --target wasm32-wasi
all: limbo limbo-wasm
.PHONY: all
test: all
limbo:
cargo build
.PHONY: limbo
limbo-wasm:
cargo build --package limbo-wasm --target wasm32-wasi
.PHONY: limbo-wasm
test: limbo
SQLITE_EXEC=./target/debug/limbo ./testing/all.test
.PHONY: test